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

Egon Bianchet’s picture

Status: Active » Fixed

Fixed, thanks

Anonymous’s picture

Status: Fixed » Closed (fixed)