summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 23a5ba6)
raw | patch | inline | side by side (parent: 23a5ba6)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 14 Jun 2010 07:58:12 +0000 (07:58 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 14 Jun 2010 07:58:12 +0000 (07:58 +0000) |
-It respects ldap properties now
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18858 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18858 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_userinfo.inc | patch | blob | history |
index 4d21c9cb3737f100ec1e1d0e9da36555fb50a9e8..e550a47d83aa1d08a2be8a835eae9ca96b51c398 100644 (file)
var $ocMapping= array();
var $groups= array();
var $result_cache =array();
- var $ignoreACL = FALSE;
+ var $ignoreACL = NULL;
var $ACLperPath = array();
var $ACLperPath_usesFilter = array();
$this->uid= $attrs['uid'][0];
$this->ip= $_SERVER['REMOTE_ADDR'];
- $this->ignoreACL = ($this->config->get_cfg_value("core","ignoreAcl") == $this->dn);
-
/* Initialize ACL_CACHE */
$this->reset_acl_cache();
}
*/
function ignore_acl_for_current_user()
{
+ if($this->ignoreACL === NULL){
+ $this->ignoreACL = ($this->config->get_cfg_value("core","ignoreAcl") == $this->dn);
+ }
return($this->ignoreACL);
}