Closed (fixed)
Project:
Zen nineSixty (960 Grid system)
Version:
6.x-4.1
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
15 Nov 2009 at 00:46 UTC
Updated:
8 Dec 2009 at 14:30 UTC
div#main is closed early
<?php print $feed_icons; ?>
</div> <!--//end #main -->
<?php if ($content_bottom): ?>
<div id="content-bottom" class="region region-content_bottom">
<?php print $content_bottom; ?>
</div> <!-- /#content-bottom -->
<?php endif; ?>
</div></div> <!-- /#content-inner, /#content -->
Should it be ...
<?php print $feed_icons; ?>
<?php if ($content_bottom): ?>
<div id="content-bottom" class="region region-content_bottom">
<?php print $content_bottom; ?>
</div> <!-- /#content-bottom -->
<?php endif; ?>
</div></div> <!-- /#content-inner, /#content -->
</div> <!--//end #main -->
Comments
Comment #1
greenskunkThanks for fixing it in 6.x-4.3 Duvien