The syntax on line 123 of page.tpl.php triggers a PHP notice if the variable $main_menu is undefined.

Please change line 123 from:

  <?php if ($main_menu): ?>

To:

  <?php if (!empty($main_menu)): ?>

Thank you.

Comments

tlattimore’s picture

Status: Needs review » Fixed

Added to 6.x-1.x head.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.