summaryrefslogtreecommitdiffstats
path: root/usr/local/www/interfaces.php
diff options
context:
space:
mode:
authorJonathan <chapmajs@gmail.com>2015-06-15 10:46:25 -0400
committerJonathan <chapmajs@gmail.com>2015-06-15 10:46:25 -0400
commitb8ceb344802a7473d7db85749888f37269303183 (patch)
tree8e773010b64e8a10ca5c5e7208dca8c972ac5490 /usr/local/www/interfaces.php
parentd20f28db6212090f174e828f766871e68cf84c11 (diff)
downloadpfsense-b8ceb344802a7473d7db85749888f37269303183.zip
pfsense-b8ceb344802a7473d7db85749888f37269303183.tar.gz
Fixing PD size selection for HughesNet
Diffstat (limited to 'usr/local/www/interfaces.php')
-rw-r--r--usr/local/www/interfaces.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/interfaces.php b/usr/local/www/interfaces.php
index 59febc1..a7c241b 100644
--- a/usr/local/www/interfaces.php
+++ b/usr/local/www/interfaces.php
@@ -2507,7 +2507,7 @@ $types6 = array("none" => gettext("None"), "staticv6" => gettext("Static IPv6"),
<td width="78%" class="vtable">
<select name="dhcp6-ia-pd-len" class="formselect" id="dhcp6-ia-pd-len">
<?php
- $sizes = array("none" => "None", 16 => "48", 12 => "52", 8 => "56", 4 => "60", 2 => "62", 1 => "63", 0 => "64");
+ $sizes = array("none" => "None", 16 => "48", 12 => "52", 8 => "56", 4 => "60", 3 => "61", 2 => "62", 1 => "63", 0 => "64");
foreach ($sizes as $bits => $length) {
echo "<option value=\"{$bits}\" ";
if (is_numeric($pconfig['dhcp6-ia-pd-len']) && ($bits == $pconfig['dhcp6-ia-pd-len'])) {
OpenPOWER on IntegriCloud