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 /etc | |
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 'etc')
-rw-r--r-- | etc/inc/authgui.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/authgui.inc b/etc/inc/authgui.inc index 85771a0..e344546 100644 --- a/etc/inc/authgui.inc +++ b/etc/inc/authgui.inc @@ -269,12 +269,12 @@ $have_cookies = isset($_COOKIE["cookie_test"]); <?=gettext("Enter username and password to login."); ?> </span> - <? if (!$have_cookies && isset($_POST['login'])): ?> + <?php if (!$have_cookies && isset($_POST['login'])): ?> <br/><br/> <span style="text-align:center; font-weight: normal ; font-style: italic; color: #ff0000"> <?= gettext("Your browser must support cookies to login."); ?> </span> - <? endif; ?> + <?php endif; ?> </p> <p> <span style="text-align:center"> |