Code

fixed some errors
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 24 May 2005 08:10:09 +0000 (08:10 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 24 May 2005 08:10:09 +0000 (08:10 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@367 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/personal/posix/class_posixAccount.inc

index e1dc1b911c6a264cbb7712cc8d6c5bb144ad2b9e..cd18775a664aa23a6bb3b789fba100710f998baf 100644 (file)
@@ -495,7 +495,11 @@ class posixAccount extends plugin
     /* Load attributes and acl's */
     foreach($this->attributes as $val){
       if(($_SESSION["js"])&&(($val=="uidNumber")||($val=="gidNumber")))
-        continue;
+        {
+          $smarty->assign("$val"."ACL","");
+          $smarty->assign("$val", $this->$val);
+          continue;
+        }
       $smarty->assign("$val", $this->$val);
       $smarty->assign("$val"."ACL", chkacl($this->acl,$val));
     }