diff options
author | Ermal <eri@pfsense.org> | 2014-02-19 15:28:39 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2014-02-19 15:28:39 +0000 |
commit | 482c93e5a2d5ac99aae74a85c4a90586019ae33d (patch) | |
tree | fb7611a52e7c13283ce2bc55f2c86f7fc2b16280 /usr | |
parent | 08005d0aa3aaf5bacbfae06148423b3f6b4763c1 (diff) | |
download | pfsense-482c93e5a2d5ac99aae74a85c4a90586019ae33d.zip pfsense-482c93e5a2d5ac99aae74a85c4a90586019ae33d.tar.gz |
Another fix even for XHTML compliance and proper selection
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/services_ntpd.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/services_ntpd.php b/usr/local/www/services_ntpd.php index b3f47ac..5c75bc7 100644 --- a/usr/local/www/services_ntpd.php +++ b/usr/local/www/services_ntpd.php @@ -261,7 +261,7 @@ include("head.inc"); continue; echo "<option value='{$iface}'"; if (is_array($pconfig['interface'])) - if (in_array($iface, $pconfig['interface'])) echo "selected"; + if (in_array($iface, $pconfig['interface'])) echo " selected=\"selected\""; echo ">{$ifacename}</option>\n"; } ?> </select> |