Closed (fixed)
Project:
Barlow
Version:
5.x-1.0
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Mar 2007 at 14:35 UTC
Updated:
6 Apr 2007 at 20:34 UTC
The block.tpl.php is missing the php declaration in 2 important print statements.
<h2 class="title"><span><? print $block->subject ?></span></h2>
<?php } ?>
<div class="content"><? print $block->content ?></div>
Should be
<h2 class="title"><span><?php print $block->subject ?></span></h2>
<?php } ?>
<div class="content"><?php print $block->content ?></div>
Without those ?php some users will see "subject?" instead of their navigation menu.
Comments
Comment #1
Egon Bianchet commentedFixed, thanks
Comment #2
(not verified) commented