Closed (fixed)
Project:
Boron (HTML5 base theme)
Version:
6.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 Nov 2011 at 16:32 UTC
Updated:
4 May 2012 at 17:30 UTC
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
Comment #1
tlattimore commentedAdded to 6.x-1.x head.