From: hickert Date: Mon, 4 Oct 2010 08:14:04 +0000 (+0000) Subject: Updated login handling X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4e54aea5a02fee9912b588346f53563ad1695cd0;p=gosa.git 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 --- 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!");