Code

Bugfix: save() cause an error about dateOfBirth, if generic page has not been loaded.
authorjanw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 17 Nov 2006 08:22:54 +0000 (08:22 +0000)
committerjanw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 17 Nov 2006 08:22:54 +0000 (08:22 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@5146 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/personal/generic/class_user.inc

index 862c4cc9ae889f43ec8af5c6dc936a7419b997a7..157bbbf71c4043754cb9b701fc626cc9e13506d7 100644 (file)
@@ -729,7 +729,10 @@ class user extends plugin
     plugin::save ();
 
     if ($this->use_dob == "1"){
-      $this->attrs['dateOfBirth'] = date("Y-m-d", $this->dateOfBirth);
+      /* If it is an array, the generic page has never been loaded - so there's no difference. Using an array would cause an error btw. */
+      if(!is_array($this->attrs['dateOfBirth'])) {
+        $this->attrs['dateOfBirth'] = date("Y-m-d", $this->dateOfBirth);
+      }
     }
 
     /* Remove additional objectClasses */