diff options
author | Darren Embry <dse@webonastick.com> | 2012-03-28 16:56:54 -0400 |
---|---|---|
committer | Darren Embry <dse@webonastick.com> | 2012-03-28 16:56:54 -0400 |
commit | a8fe61f1ed0d48941dcd581645416852b9e22dfc (patch) | |
tree | a9f73990ed1f6fb813017d67ae1f93b46b430ecc /usr/local/www/interfaces.php | |
parent | 17aa0c18f292f64f1f9cee0b2b7e2a61a2fa4c6a (diff) | |
download | pfsense-a8fe61f1ed0d48941dcd581645416852b9e22dfc.zip pfsense-a8fe61f1ed0d48941dcd581645416852b9e22dfc.tar.gz |
prep work for feature #2320: tag fields for ipv4v6
Diffstat (limited to 'usr/local/www/interfaces.php')
-rwxr-xr-x | usr/local/www/interfaces.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/interfaces.php b/usr/local/www/interfaces.php index 837ccda..88ad2c2 100755 --- a/usr/local/www/interfaces.php +++ b/usr/local/www/interfaces.php @@ -1514,9 +1514,9 @@ $types6 = array("none" => gettext("None"), "staticv6" => gettext("Static IPv6"), <tr> <td width="22%" valign="top" class="vncellreq"><?=gettext("IPv6 address"); ?></td> <td width="78%" class="vtable"> - <input name="ipaddrv6" type="text" class="formfld unknown" id="ipaddrv6" size="28" value="<?=htmlspecialchars($pconfig['ipaddrv6']);?>"> + <input name="ipaddrv6" type="text" class="formfld unknown ipv4v6" id="ipaddrv6" size="28" value="<?=htmlspecialchars($pconfig['ipaddrv6']);?>"> / - <select name="subnetv6" class="formselect" id="subnetv6"> + <select name="subnetv6" class="formselect ipv4v6" id="subnetv6"> <?php for ($i = 128; $i > 0; $i--) { if($i <> 127) { |