summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 18f1a48)
raw | patch | inline | side by side (parent: 18f1a48)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 24 Mar 2010 12:41:13 +0000 (12:41 +0000) | ||
committer | hickert <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 | patch | blob | history |
diff --git a/gosa-core/plugins/personal/posix/class_posixAccount.inc b/gosa-core/plugins/personal/posix/class_posixAccount.inc
index 3604a2ae45048b5a962024f0eea53371b8752b94..86ec537be8b11296795a43391e614865f0dee815 100644 (file)
var $shadowLastChange= "0";
var $shadowInactive= "0";
var $shadowExpire= "";
- var $gosaDefaultPrinter= "";
var $accessTo= array();
var $trustModel= "";
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");
}
}
- if(empty($this->attrs['gosaDefaultPrinter'])){
- $thid->attrs['gosaDefaultPrinter']=array();
- }
-
-
/* include global link_info */
$this->cleanup();
"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")))
);
}