summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8b93421)
raw | patch | inline | side by side (parent: 8b93421)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 21 Aug 2009 10:55:45 +0000 (10:55 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 21 Aug 2009 10:55:45 +0000 (10:55 +0000) |
-caused some warnings.
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14103 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14103 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_acl.inc | patch | blob | history |
index b2e18704cef64ee0092b6ee25624915e8cc601d6..b2e3ca093d46de39d83c8a7f659c99466443fce1 100644 (file)
while ($attrs= $ldap->fetch()){
// Allow objects without cn to be listed without causing an error.
- if(!isset($attrs['cn'][0])){
- $this->users['U:'.$attrs['dn']]= $attrs['uid'][0];
+ if(!isset($attrs['uid'][0])){
+ $this->users['U:'.$attrs['dn']]= $attrs['cn'][0];
}else{
$this->users['U:'.$attrs['dn']]= $attrs['cn'][0].' ['.$attrs['uid'][0].']';
}