X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/8368d1ed9b3acdd13dc8ef325161661186935435..04bc6bdd39d67bcf9f63d8af4b067f1fafc06f8a:/WEB-INF/lib/form/TextField.class.php diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index 82d6af20..20b7fc6e 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -41,10 +41,8 @@ class TextField extends FormElement { function setAsPassword($name) { $this->mPassword = $name; } function getAsPassword() { return $this->mPassword; } - function toStringControl() { - if (!$this->isRenderable()) return ""; - - if (!$this->isEnable()) { + function toStringControl() { + if (!$this->isEnabled()) { $html = "name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n"; } else { @@ -57,8 +55,8 @@ class TextField extends FormElement { if ($this->size!="") $html .= " size=\"$this->size\""; - if ($this->mStyle!="") - $html .= " style=\"$this->mStyle\""; + if ($this->style!="") + $html .= " style=\"$this->style\""; if ($this->max_length!="") $html .= " maxlength=\"$this->max_length\"";