fix missing <?php. The missing full size tag makes the file fail when short tags are turned off

This commit is contained in:
Isaac Connor 2013-10-17 14:23:25 -04:00
parent 5ead2a4394
commit 870a59bed4
1 changed files with 1 additions and 1 deletions

View File

@ -648,7 +648,7 @@ function buildSelect( $name, $contents, $behaviours=false )
foreach ( $contents as $contentValue => $contentText )
{
?>
<option value="<?= $contentValue ?>"<?php if ( $value == $contentValue ) { ?> selected="selected"<? } ?>><?= validHtmlStr($contentText) ?></option>
<option value="<?= $contentValue ?>"<?php if ( $value == $contentValue ) { ?> selected="selected"<?php } ?>><?= validHtmlStr($contentText) ?></option>
<?php
}
?>