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