Code

Fixed problem with gecos fields
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 26 Jul 2005 05:54:15 +0000 (05:54 +0000)
committercajus <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
plugins/personal/posix/class_posixAccount.inc

index 3eea26c3635f844b065605e2a3bccb714c3eab55..d149283722d90e58cc8b78bbc11c226900d9f8cd 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -12,6 +12,7 @@ GOsa2 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
index 7465176735f747eea71524bddfcc049012158540..e1f65bfcc3017532105fdff4c12f37b0ad759a41 100644 (file)
@@ -746,14 +746,14 @@ class posixAccount extends plugin
       $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){