diff options
author | Colin Fleming <cj_fleming@sky.com> | 2013-01-14 13:27:36 +0000 |
---|---|---|
committer | Colin Fleming <cj_fleming@sky.com> | 2013-01-14 13:27:36 +0000 |
commit | a3381369d9858b92e3282f5d20ff94b62349b93a (patch) | |
tree | 021d4f761db4cdaed63a7dff1d70e1d1c7cc10c4 /usr/local/www/interfaces.php | |
parent | 11d1d64e81484f3175780e841f72fe845d7205f3 (diff) | |
download | pfsense-a3381369d9858b92e3282f5d20ff94b62349b93a.zip pfsense-a3381369d9858b92e3282f5d20ff94b62349b93a.tar.gz |
Update PHP shorthand tag
Standardise all PHP start tags from "<?" to "<?PHP"
Diffstat (limited to 'usr/local/www/interfaces.php')
-rwxr-xr-x | usr/local/www/interfaces.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/interfaces.php b/usr/local/www/interfaces.php index c4c127b..a297cb8 100755 --- a/usr/local/www/interfaces.php +++ b/usr/local/www/interfaces.php @@ -2586,7 +2586,7 @@ $types6 = array("none" => gettext("None"), "staticv6" => gettext("Static IPv6"), <tr> <td valign="top" class="vncell">802.1X <?=gettext("Authentication Roaming Preauth"); ?></td> <td class="vtable"> - <input name="rsn_preauth" id="rsn_preauth" type="checkbox" class="formfld unknown" size="66" value="yes" <? if ($pconfig['rsn_preauth']) echo "checked"; ?>> + <input name="rsn_preauth" id="rsn_preauth" type="checkbox" class="formfld unknown" size="66" value="yes" <?php if ($pconfig['rsn_preauth']) echo "checked"; ?>> <br/> </td> </tr> |