Posted by BenStallings on September 22, 2009 at 9:17pm
| Project: | Leaf |
| Version: | 6.x-1.2 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
In the Drupal 6 version of this theme, the sidebar variables are not correct in page.tpl.php. It reads:
<div id="sidebar">
<?php if ($search_box): ?>
<?php print $search_box ?>
<?php endif; ?>
<?php print $sidebar_left ?>
<?php print $sidebar_right ?>
</div>It should read,
<div id="sidebar">
<?php if ($search_box): ?>
<?php print $search_box ?>
<?php endif; ?>
<?php print $left ?>
<?php print $right ?>
</div>