fix missing <?php. The missing full size tag makes the file fail when short tags are turned off
This commit is contained in:
parent
5ead2a4394
commit
870a59bed4
|
@ -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
|
||||
}
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue