summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/usr/local/www/services_captiveportal.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/usr/local/www/services_captiveportal.php b/src/usr/local/www/services_captiveportal.php
index d486b70..699f2b0 100644
--- a/src/usr/local/www/services_captiveportal.php
+++ b/src/usr/local/www/services_captiveportal.php
@@ -685,13 +685,13 @@ $form->add($section);
$section = new Form_Section('Authentication');
$section->addClass('Authentication');
-$group = new Form_Group('*Authentication method');
+$group = new Form_Group('*Authentication Method');
$group->add(new Form_Checkbox(
'auth_method',
null,
'No Authentication',
- $pconfig['auth_method'] == 'none',
+ $pconfig['auth_method'] == 'none' || empty($pconfig['auth_method']),
'none'
))->displayasRadio();
@@ -711,6 +711,8 @@ $group->add(new Form_Checkbox(
'radius'
))->displayasRadio();
+$group->setHelp('Select an Authentication Method to use for this zone. One method must be selected.');
+
$section->add($group);
$section->addInput(new Form_Checkbox(
OpenPOWER on IntegriCloud