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>

Comments

benstallings’s picture

Issue summary: View changes
Status: Active » Closed (outdated)

Now that this issue is closed, please review the contribution record.

As a contributor, attribute any organization that helped you, or if you volunteered your own time.

Maintainers, please credit people who helped resolve this issue.