Code

updated acls
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 24 Mar 2010 12:41:13 +0000 (12:41 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 24 Mar 2010 12:41:13 +0000 (12:41 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17071 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/plugins/personal/posix/class_posixAccount.inc

index 3604a2ae45048b5a962024f0eea53371b8752b94..86ec537be8b11296795a43391e614865f0dee815 100644 (file)
@@ -49,7 +49,6 @@ class posixAccount extends plugin
   var $shadowLastChange= "0";
   var $shadowInactive= "0";
   var $shadowExpire= "";
-  var $gosaDefaultPrinter= "";
   var $accessTo= array();
   var $trustModel= "";
 
@@ -93,7 +92,7 @@ class posixAccount extends plugin
 
   var $attributes     = array("homeDirectory", "loginShell", "uidNumber", "gidNumber", "gecos",
       "shadowMin", "shadowMax", "shadowWarning", "shadowInactive", "shadowLastChange",
-      "shadowExpire", "gosaDefaultPrinter", "uid","accessTo","trustModel", "gotoLastSystemLogin");
+      "shadowExpire", "uid","accessTo","trustModel", "gotoLastSystemLogin");
 
   var $objectclasses= array("posixAccount", "shadowAccount");
 
@@ -914,11 +913,6 @@ class posixAccount extends plugin
       }
     }
 
-    if(empty($this->attrs['gosaDefaultPrinter'])){
-      $thid->attrs['gosaDefaultPrinter']=array();
-    }
-
-
     /* include global link_info */
     $this->cleanup();
 
@@ -1438,14 +1432,17 @@ class posixAccount extends plugin
             "uidNumber"           =>  _("User ID"),
             "gidNumber"           =>  _("Group ID"),
 
+            "shadowLastChange"    =>  _("Shadow last changed"),
+            "gotoLastSystemLogin"    =>  _("Last login"),
+
             "mustchangepassword"=>  _("Force password change on login"),
             "shadowMin"           =>  _("Shadow min"),
             "shadowMax"           =>  _("Shadow max"),
             "shadowWarning"       =>  _("Shadow warning"),
             "shadowInactive"      =>  _("Shadow inactive"),
             "shadowExpire"        =>  _("Shadow expire"),
-            "sshPublickey"        =>  _("Public SSH key"),
-            "trustModel"          =>  _("System trust model")))
+            "sshPublicKey"        =>  _("Public SSH key"),
+            "accessTo"            =>  _("System trust model")))
               );
   }