summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1b732ac)
raw | patch | inline | side by side (parent: 1b732ac)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 24 May 2005 08:10:09 +0000 (08:10 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 24 May 2005 08:10:09 +0000 (08:10 +0000) |
plugins/personal/posix/class_posixAccount.inc | patch | blob | history |
diff --git a/plugins/personal/posix/class_posixAccount.inc b/plugins/personal/posix/class_posixAccount.inc
index e1dc1b911c6a264cbb7712cc8d6c5bb144ad2b9e..cd18775a664aa23a6bb3b789fba100710f998baf 100644 (file)
/* 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));
}