incorrect region variables for left & right sidebars in page.tpl.php
BenStallings - September 22, 2009 - 21:17
| Project: | Leaf |
| Version: | 6.x-1.2 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Description
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>