Closed (fixed)
Project:
iUI
Version:
6.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
13 Aug 2008 at 00:24 UTC
Updated:
29 Oct 2010 at 05:27 UTC
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
Comment #1
robloachI just made a small commit to remove the short tags: http://drupal.org/cvs?commit=133370
Patches, of course, are welcome ;-) .
Comment #2
micklweiss commentedfixed in cvs