X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/526ed56a0144e0602140dd7c65fe237f42a49e44..f2870ac71e6ea7272c9ed93d82f401e2d5344697:/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 87f9ee82..46ff7b83 100644 --- a/WEB-INF/lib/form/DateField.class.php +++ b/WEB-INF/lib/form/DateField.class.php @@ -35,7 +35,7 @@ class DateField extends TextField { var $lToday = "Today"; var $mDateObj; - var $cClassName = "DateField"; + var $class = 'DateField'; var $lCalendarButtons = array('today'=>'Today', 'close'=>'Close'); @@ -81,10 +81,9 @@ class DateField extends TextField { } } - function toStringControl() { - if (!$this->isRenderable()) return ""; + function toStringControl() { - if (!$this->isEnable()) { + if (!$this->isEnabled()) { $html = htmlspecialchars($this->getValue()). "name\" value=\"".htmlspecialchars($this->getValue())."\">\n"; } else { @@ -398,8 +397,8 @@ class DateField extends TextField { if ($this->size!="") $html .= " size=\"$this->size\""; - if ($this->mStyle!="") - $html .= " style=\"$this->mStyle\""; + if ($this->style!="") + $html .= " style=\"$this->style\""; $html .= " maxlength=\"50\"";