There is a small bug in the block.tpl.php - which only I only discover because I'm using IIS (don't ask) instead of Apache - but could cause problems for other servers too.

In the first list line the php interpreter is not called correctly:

 <div class="block block-<? print $block->module?>" id="block-<?php print $block->module . "-" . $block->delta ?>">

Should be

 <div class="block block-<?php print $block->module ?>" id="block-<?php print $block->module . "-" . $block->delta ?>">
CommentFileSizeAuthor
#2 349072.patch649 bytesanarcat
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

PinkChocobo’s picture

yes, I noticed in the HTML source:

<div class="block block-<? print $block->module?>" id="block-menu-menu-education">
anarcat’s picture

Status: Active » Reviewed & tested by the community
FileSize
649 bytes

yup, simple enough fix attached.

anarcat’s picture

Status: Reviewed & tested by the community » Fixed

patch committed

Status: Fixed » Closed (fixed)

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