summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3550584)
raw | patch | inline | side by side (parent: 3550584)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 22 Jul 2010 10:02:51 +0000 (10:02 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 22 Jul 2010 10:02:51 +0000 (10:02 +0000) |
-Fixed prolbem with uninitialized ACLs.
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19046 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19046 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/html/password.php | patch | blob | history |
index da42f14558a33264bb9f97b35303d1bc68a5cd54..448c10e2f724619f64f9dc0679a39a16444012b3 100644 (file)
/* Do we have the selected user somewhere? */
$ui= ldap_login_user($uid, $current_password);
+ /* Load ocMapping into userinfo */
+ $tmp= new acl($config, NULL, $ui->dn);
+ $ui->ocMapping= $tmp->ocMapping;
+
+
+ $ui->loadACL();
+
if ($ui === NULL) {
$message[]= _("Please check the username/password combination!");
} else {