summaryrefslogtreecommitdiffstats
path: root/usr/local/www/interfaces_wireless_edit.php
diff options
context:
space:
mode:
authorColin Fleming <cj_fleming@sky.com>2013-01-14 13:27:36 +0000
committerColin Fleming <cj_fleming@sky.com>2013-01-14 13:27:36 +0000
commita3381369d9858b92e3282f5d20ff94b62349b93a (patch)
tree021d4f761db4cdaed63a7dff1d70e1d1c7cc10c4 /usr/local/www/interfaces_wireless_edit.php
parent11d1d64e81484f3175780e841f72fe845d7205f3 (diff)
downloadpfsense-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_wireless_edit.php')
-rw-r--r--usr/local/www/interfaces_wireless_edit.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/interfaces_wireless_edit.php b/usr/local/www/interfaces_wireless_edit.php
index 335fb5b..3b1367d 100644
--- a/usr/local/www/interfaces_wireless_edit.php
+++ b/usr/local/www/interfaces_wireless_edit.php
@@ -178,9 +178,9 @@ include("head.inc");
<td valign="top" class="vncellreq"><?=gettext("Mode");?></td>
<td class="vtable">
<select name="mode" class="formselect">
- <option <? if ($pconfig['mode'] == 'bss') echo "selected";?> value="bss"><?=gettext("Infrastructure (BSS)");?></option>
- <option <? if ($pconfig['mode'] == 'adhoc') echo "selected";?> value="adhoc"><?=gettext("Ad-hoc (IBSS)");?></option>
- <option <? if ($pconfig['mode'] == 'hostap') echo "selected";?> value="hostap"><?=gettext("Access Point");?></option>
+ <option <?php if ($pconfig['mode'] == 'bss') echo "selected";?> value="bss"><?=gettext("Infrastructure (BSS)");?></option>
+ <option <?php if ($pconfig['mode'] == 'adhoc') echo "selected";?> value="adhoc"><?=gettext("Ad-hoc (IBSS)");?></option>
+ <option <?php if ($pconfig['mode'] == 'hostap') echo "selected";?> value="hostap"><?=gettext("Access Point");?></option>
</select></td>
</tr>
<tr>
OpenPOWER on IntegriCloud