From 4e54aea5a02fee9912b588346f53563ad1695cd0 Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 4 Oct 2010 08:14:04 +0000 Subject: [PATCH] Updated login handling -fixed problem with quotes in passwords git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19900 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/html/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gosa-core/html/index.php b/gosa-core/html/index.php index 5c9207166..059867a05 100644 --- a/gosa-core/html/index.php +++ b/gosa-core/html/index.php @@ -305,7 +305,7 @@ if (($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['login'])) || $htacces exit; } } else { - $ui= ldap_login_user($username, $_POST["password"]); + $ui= ldap_login_user($username, get_post("password")); } if ($ui === NULL || !$ui) { $message= _("Please check the username/password combination!"); -- 2.30.2