summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0f2c8ec)
raw | patch | inline | side by side (parent: 0f2c8ec)
author | janw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 17 Nov 2006 08:22:54 +0000 (08:22 +0000) | ||
committer | janw <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 | patch | blob | history |
index 862c4cc9ae889f43ec8af5c6dc936a7419b997a7..157bbbf71c4043754cb9b701fc626cc9e13506d7 100644 (file)
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 */