Please do not do this:

    <?=$content ?>

Short tags should never be used in a project hosted at d.o., as it violates Drupal coding standards and won't work with standard PHP configurations.

Please do this:

<?php print $content; ?>

Comments

RobLoach’s picture

Version: 6.x-1.0 » 6.x-1.x-dev

I just made a small commit to remove the short tags: http://drupal.org/cvs?commit=133370

Patches, of course, are welcome ;-) .

micklweiss’s picture

Status: Active » Closed (fixed)

fixed in cvs