X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FDateField.class.php;h=f8eef8cb84675206d02640929a93950ef5504c1b;hb=21a4caf9b07233e69ad230a4d4d5248b589c205b;hp=ecfdaf92b67308db3b4558c465af48e2c61f835a;hpb=cd5e077ecb497431decde4835138b877d63b261c;p=timetracker.git diff --git a/WEB-INF/lib/form/DateField.class.php b/WEB-INF/lib/form/DateField.class.php index ecfdaf92..f8eef8cb 100644 --- a/WEB-INF/lib/form/DateField.class.php +++ b/WEB-INF/lib/form/DateField.class.php @@ -41,14 +41,12 @@ class DateField extends TextField { $this->class = 'DateField'; $this->name = $name; $this->mDateObj = new DateAndTime(); - - if (isset($GLOBALS["I18N"])) { - $this->localize($GLOBALS["I18N"]); - } + $this->localize(); } - function localize($i18n) { + function localize() { global $user; + global $i18n; $this->mDateObj->setFormat($user->date_format); @@ -80,6 +78,7 @@ class DateField extends TextField { } function getHtml() { + global $user; if (!$this->isEnabled()) { $html = htmlspecialchars($this->getValue()). @@ -296,9 +295,7 @@ class DateField extends TextField { function getDateString(dateVal) {\n"; - if (isset($GLOBALS['i18n'])) { - $html .= "dateVal.locale = \"".$GLOBALS['i18n']->lang."\";\n"; - } + $html .= "dateVal.locale = \"".$user->lang."\";\n"; $html .= "return dateVal.strftime(dateFormat); }