From: cajus Date: Fri, 16 Oct 2009 15:10:31 +0000 (+0000) Subject: Initialize config object before using it X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ac95c233c0ca16449ae302524d91ff785fc2be7c;p=gosa.git Initialize config object before using it git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14598 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/html/index.php b/gosa-core/html/index.php index 34e0279d4..8b7852860 100644 --- a/gosa-core/html/index.php +++ b/gosa-core/html/index.php @@ -320,7 +320,8 @@ if (($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['login'])) || $htacces if ($ui === NULL || !$ui){ $message= _("Please check the username/password combination."); $smarty->assign ('nextfield', 'password'); - new log("security","login","",array(),"Authentication failed for user \"$username\"") ; + session::global_set('config',$config); + new log("security","login","",array(),"Authentication failed for user \"$username\""); } else { /* Remove all locks of this user */ del_user_locks($ui->dn);