From: hickert Date: Tue, 24 May 2005 08:10:09 +0000 (+0000) Subject: fixed some errors X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5759e276a6fada4bebe412cfdd400bb2a878d8b6;p=gosa.git fixed some errors git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@367 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/personal/posix/class_posixAccount.inc b/plugins/personal/posix/class_posixAccount.inc index e1dc1b911..cd18775a6 100644 --- a/plugins/personal/posix/class_posixAccount.inc +++ b/plugins/personal/posix/class_posixAccount.inc @@ -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)); }