summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/interfaces.php
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2016-01-08 18:17:50 -0500
committerStephen Beaver <sbeaver@netgate.com>2016-01-08 18:17:50 -0500
commit03911305e261879ab46a7b52436cf130cf70076d (patch)
tree5a30528764583adfd7395cacba5cc61e2ea912df /src/usr/local/www/interfaces.php
parent74ebdeff771d50f5da64d488350341266b4d4cee (diff)
downloadpfsense-03911305e261879ab46a7b52436cf130cf70076d.zip
pfsense-03911305e261879ab46a7b52436cf130cf70076d.tar.gz
Set checkboxes value to "Selected" (not "yes")
Diffstat (limited to 'src/usr/local/www/interfaces.php')
-rw-r--r--src/usr/local/www/interfaces.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/usr/local/www/interfaces.php b/src/usr/local/www/interfaces.php
index 0ad0958..27af91e 100644
--- a/src/usr/local/www/interfaces.php
+++ b/src/usr/local/www/interfaces.php
@@ -2091,7 +2091,8 @@ $section->addInput(new Form_Checkbox(
'adv_dhcp6_config_file_override',
'Config file override',
'Override the configuration from this file',
- $pconfig['adv_dhcp6_config_file_override']
+ $pconfig['adv_dhcp6_config_file_override'],
+ 'Selected'
));
$section->addInput(new Form_Checkbox(
@@ -2143,7 +2144,8 @@ $section->addInput(new Form_Checkbox(
'adv_dhcp6_interface_statement_information_only_enable',
'Information only',
null,
- $pconfig['adv_dhcp6_interface_statement_information_only_enable']
+ $pconfig['adv_dhcp6_interface_statement_information_only_enable'],
+ 'Selected'
));
$section->addInput(new Form_Input(
@@ -2178,7 +2180,8 @@ $group->add(new Form_Checkbox(
'adv_dhcp6_id_assoc_statement_address_enable',
null,
'Non-Temporary Address Allocation',
- $pconfig['adv_dhcp6_id_assoc_statement_address_enable']
+ $pconfig['adv_dhcp6_id_assoc_statement_address_enable'],
+ 'Selected'
));
$group->add(new Form_Input(
@@ -2217,7 +2220,8 @@ $group->add(new Form_Checkbox(
'adv_dhcp6_id_assoc_statement_prefix_enable',
null,
'Prefix Delegation ',
- $pconfig['adv_dhcp6_id_assoc_statement_prefix_enable']
+ $pconfig['adv_dhcp6_id_assoc_statement_prefix_enable'],
+ 'Selected'
));
$group->add(new Form_Input(
OpenPOWER on IntegriCloud