diff options
-rwxr-xr-x | usr/local/www/system_usermanager_settings.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/usr/local/www/system_usermanager_settings.php b/usr/local/www/system_usermanager_settings.php index cba9d57..d7e3e1a 100755 --- a/usr/local/www/system_usermanager_settings.php +++ b/usr/local/www/system_usermanager_settings.php @@ -41,9 +41,6 @@ ##|*MATCH=system_usermanager_settings.php* ##|-PRIV -if($_POST['savetest']) - $save_and_test = true; - require("guiconfig.inc"); $pconfig['session_timeout'] = &$config['system']['webgui']['session_timeout']; @@ -53,6 +50,7 @@ $pconfig['backend'] = &$config['system']['webgui']['backend']; // Page title for main admin $pgtitle = array(gettext("System"),gettext("User manager settings")); +$save_and_test = false; if ($_POST) { unset($input_errors); $pconfig = $_POST; @@ -64,6 +62,11 @@ if ($_POST) { } if (!$input_errors) { + if ($_POST['savetest'] && $_POST['authmode'] == "ldap") + $save_and_test = true; + else + $savemsg = gettext("The test was not performed becuase it is supported only for ldap based backends."); + if(isset($_POST['session_timeout']) && $_POST['session_timeout'] != "") $config['system']['webgui']['session_timeout'] = intval($_POST['session_timeout']); |