Blank pages, bad PHP (short tags) in page.tpl.php
yelvington - August 13, 2008 - 00:24
| Project: | iUI |
| Version: | 6.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
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; ?>
#1
I just made a small commit to remove the short tags: http://drupal.org/cvs?commit=133370
Patches, of course, are welcome ;-) .