X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FDateField.class.php;h=f1487d04b81f0c83667315c184b7bade5184e8e4;hb=75a1eedb8977b8f2db459128bab9aaf367e3b58b;hp=9016dff0c1e091c8a37bafa0cd5ce74bfd4445c5;hpb=75b65e92b21d45e2b09fb12daef169fb214a7acd;p=timetracker.git diff --git a/WEB-INF/lib/form/DateField.class.php b/WEB-INF/lib/form/DateField.class.php index 9016dff0..f1487d04 100644 --- a/WEB-INF/lib/form/DateField.class.php +++ b/WEB-INF/lib/form/DateField.class.php @@ -48,7 +48,7 @@ class DateField extends TextField { global $user; global $i18n; - $this->mDateObj->setFormat($user->date_format); + $this->mDateObj->setFormat($user->getDateFormat()); $this->mMonthNames = $i18n->monthNames; $this->mWeekDayShortNames = $i18n->weekdayShortNames; @@ -56,7 +56,7 @@ class DateField extends TextField { $this->lCalendarButtons['today'] = $i18n->get('label.today'); $this->lCalendarButtons['close'] = $i18n->get('button.close'); - $this->mDateFormat = $user->date_format; + $this->mDateFormat = $user->getDateFormat(); $this->mWeekStartDay = $user->week_start; }