Code

Updated class_acl.inc modifications.
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 21 Aug 2009 10:55:45 +0000 (10:55 +0000)
committerhickert <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

gosa-core/include/class_acl.inc

index b2e18704cef64ee0092b6ee25624915e8cc601d6..b2e3ca093d46de39d83c8a7f659c99466443fce1 100644 (file)
@@ -89,8 +89,8 @@ class acl extends plugin
     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].']';
       }