summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/system_authservers.php
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2015-09-01 16:05:24 -0400
committerStephen Beaver <sbeaver@netgate.com>2015-09-01 16:05:24 -0400
commitc84db5bbdef21f43ab383c30ef773204e346d585 (patch)
tree64e21f12caf10e66d4b8af21fedbf228aed609ea /src/usr/local/www/system_authservers.php
parent905f61195954ef93a019d89ec4ffd8045ce2d253 (diff)
downloadpfsense-c84db5bbdef21f43ab383c30ef773204e346d585.zip
pfsense-c84db5bbdef21f43ab383c30ef773204e346d585.tar.gz
Fixed 5047
Alternative layout
Diffstat (limited to 'src/usr/local/www/system_authservers.php')
-rw-r--r--src/usr/local/www/system_authservers.php16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/usr/local/www/system_authservers.php b/src/usr/local/www/system_authservers.php
index d3236d3..52d57cc 100644
--- a/src/usr/local/www/system_authservers.php
+++ b/src/usr/local/www/system_authservers.php
@@ -499,21 +499,25 @@ $section->addInput(new Form_Select(
$group = new Form_Group('Search scope');
-$group->add(new Form_Select(
+$SSF = new Form_Select(
'ldap_scope',
- 'Search scope',
+ 'Level',
$pconfig['ldap_scope'],
$ldap_scopes
-))->setHelp('Level');
+);
-$group->add(new Form_Input(
+$SSB = new Form_Input(
'ldap_basedn',
'Base DN',
'text',
$pconfig['ldap_basedn']
-))->setHelp('Base DN');
+);
-$section->add($group);
+
+$section->addInput(new Form_StaticText(
+ 'Search scope',
+ 'Level ' . $SSF . '<br />' . 'Base DN' . $SSB
+));
$group = new Form_Group('Authentication containers');
$group->add(new Form_Input(
OpenPOWER on IntegriCloud