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