summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1d0dfa9)
raw | patch | inline | side by side (parent: 1d0dfa9)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 26 Jul 2005 05:54:15 +0000 (05:54 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 26 Jul 2005 05:54:15 +0000 (05:54 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1001 594d385d-05f5-0310-b6e9-bd551577e9d8
Changelog | patch | blob | history | |
plugins/personal/posix/class_posixAccount.inc | patch | blob | history |
diff --git a/Changelog b/Changelog
index 3eea26c3635f844b065605e2a3bccb714c3eab55..d149283722d90e58cc8b78bbc11c226900d9f8cd 100644 (file)
--- a/Changelog
+++ b/Changelog
- Fixed IE issues with W3C compatibilty where IE posts disabled fields
- Fixed problems with existing samba accounts and password changed fields
- Removed login problems with undefined ldap_conf variable
+ - Fixed problems where the GECOS field is not written correctly
* gosa 2.4beta2
- Fixed error handler to be PHP 4.x compatible
diff --git a/plugins/personal/posix/class_posixAccount.inc b/plugins/personal/posix/class_posixAccount.inc
index 7465176735f747eea71524bddfcc049012158540..e1f65bfcc3017532105fdff4c12f37b0ad759a41 100644 (file)
$this->shadowExpire = "";
}
- /* Call parents save to prepare $this->attrs */
- plugin::save();
-
/* Fill gecos */
if (isset($this->parent) && $this->parent != NULL){
$this->gecos= $this->parent->by_object['user']->cn;
}
+ /* Call parents save to prepare $this->attrs */
+ plugin::save();
+
/* Trust accounts */
$objectclasses= array();
foreach ($this->attrs['objectClass'] as $key => $class){