X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/77da39e33eb70b8b01502c09e8057dd199554de6..6e2b1ec1880cebedef5a1ca380820ad0d40d06a2:/WEB-INF/lib/form/DateField.class.php diff --git a/WEB-INF/lib/form/DateField.class.php b/WEB-INF/lib/form/DateField.class.php index f8eef8cb..f1487d04 100644 --- a/WEB-INF/lib/form/DateField.class.php +++ b/WEB-INF/lib/form/DateField.class.php @@ -48,15 +48,15 @@ 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; - $this->lToday = $i18n->getKey('label.today'); - $this->lCalendarButtons['today'] = $i18n->getKey('label.today'); - $this->lCalendarButtons['close'] = $i18n->getKey('button.close'); + $this->lToday = $i18n->get('label.today'); + $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; }