summaryrefslogtreecommitdiffstats
path: root/src/usr
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2015-11-14 08:43:22 -0500
committerStephen Beaver <sbeaver@netgate.com>2015-11-14 08:43:22 -0500
commit2217c57471d989677d050ac24272f1dfbafeafd3 (patch)
tree438c308a9d9a369882212a7ca9ea5a8dc77cb826 /src/usr
parent86c772239b30e11241d11e7804da765e99ccba0b (diff)
parentaf58fc06ad45c3c127c80024a60689f75ad5d4b1 (diff)
downloadpfsense-2217c57471d989677d050ac24272f1dfbafeafd3.zip
pfsense-2217c57471d989677d050ac24272f1dfbafeafd3.tar.gz
Merge pull request #2063 from heper/patch-1
Diffstat (limited to 'src/usr')
-rw-r--r--src/usr/local/www/diag_authentication.php6
-rw-r--r--src/usr/local/www/system_usermanager_settings.php7
2 files changed, 12 insertions, 1 deletions
diff --git a/src/usr/local/www/diag_authentication.php b/src/usr/local/www/diag_authentication.php
index af1a621..85fd3bb 100644
--- a/src/usr/local/www/diag_authentication.php
+++ b/src/usr/local/www/diag_authentication.php
@@ -118,6 +118,12 @@ $section = new Form_Section('Authentication Test');
foreach (auth_get_authserver_list() as $auth_server)
$serverlist[$auth_server['name']] = $auth_server['name'];
+if (isset($config['system']['webgui']['authmode'])) {
+ $pconfig['authmode'] = &$config['system']['webgui']['authmode'];
+}
+else {
+ $pconfig['authmode'] = "Local Database";
+}
$section->addInput(new Form_Select(
'authmode',
'Authentication Server',
diff --git a/src/usr/local/www/system_usermanager_settings.php b/src/usr/local/www/system_usermanager_settings.php
index b432548..a3320e3 100644
--- a/src/usr/local/www/system_usermanager_settings.php
+++ b/src/usr/local/www/system_usermanager_settings.php
@@ -67,7 +67,12 @@
require("guiconfig.inc");
$pconfig['session_timeout'] = &$config['system']['webgui']['session_timeout'];
-$pconfig['authmode'] = &$config['system']['webgui']['authmode'];
+if (isset($config['system']['webgui']['authmode'])) {
+ $pconfig['authmode'] = &$config['system']['webgui']['authmode'];
+}
+else {
+ $pconfig['authmode'] = "Local Database";
+}
$pconfig['backend'] = &$config['system']['webgui']['backend'];
// Page title for main admin
OpenPOWER on IntegriCloud