diff options
author | bmeeks8 <bmeeks8@bellsouth.net> | 2013-06-18 18:49:39 -0400 |
---|---|---|
committer | bmeeks8 <bmeeks8@bellsouth.net> | 2013-06-18 18:49:39 -0400 |
commit | 34cb0a39d7d14ecba7a4fc5060a04760d3921bc8 (patch) | |
tree | be1f93eff4980ae6cf3f0d3bbbd5735a426f7b60 /config/unbound/unbound_acls.php | |
parent | 8c5840439b815474d2a39434147b7892590198f3 (diff) | |
parent | 268bcb9a886494c81191ec63e220ec1c02508b65 (diff) | |
download | pfsense-packages-34cb0a39d7d14ecba7a4fc5060a04760d3921bc8.tar.gz pfsense-packages-34cb0a39d7d14ecba7a4fc5060a04760d3921bc8.tar.bz2 pfsense-packages-34cb0a39d7d14ecba7a4fc5060a04760d3921bc8.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'config/unbound/unbound_acls.php')
-rw-r--r-- | config/unbound/unbound_acls.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/unbound/unbound_acls.php b/config/unbound/unbound_acls.php index 721d3adb..59738aab 100644 --- a/config/unbound/unbound_acls.php +++ b/config/unbound/unbound_acls.php @@ -139,7 +139,8 @@ include("head.inc"); <script type="text/javascript"> function mask_field(fieldname, fieldsize, n) { return '<select name="' + fieldname + n + '" class="formselect" id="' + fieldname + n + '"><?php - for ($i = 128; $i >= 0; $i--) { + $start = 24; if (function_exists("is_ipaddrv6")) $start = "128"; + for ($i = $start; $i >= 0; $i--) { echo "<option value=\"$i\">$i</option>"; } ?></select>'; |