diff --git a/setup/config.php b/setup/config.php index 16a1061a7c..a6dfe397f8 100644 --- a/setup/config.php +++ b/setup/config.php @@ -20,9 +20,7 @@ // Authorize the user to use setup app include("./inc/setup_auth.inc.php"); // Does not return unless user is authorized - echo "
"; + if ($newsettings["auth_type"] != "ldap") { + echo "
"; + } if ($submit) { @$db->query("delete from config"); @@ -53,7 +53,7 @@ $db->query("insert into config (config_name, config_value) values ('" . addslashes($newsetting[0]) . "','" . addslashes($newsetting[1]) . "')"); } - if ($newsettings["authtype"] == "ldap") { + if ($newsettings["auth_type"] == "ldap") { Header("Location: ldap.php"); exit; } else {