X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=d7e38aeff4db6193f2cd94658fb260dd10dfa713;hb=3a5964df63eb410b66e02326ebc7f7c90e8d606e;hp=9107c963d73177a063c76a7afc8dbaa7cb27c572;hpb=5532fe6cfc2125063ff8040cfa80e20089ac64b0;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index 9107c963..d7e38aef 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -30,7 +30,7 @@ import('form.FormElement'); class TextField extends FormElement { var $mPassword = false; - var $cClassName = "TextField"; + var $class = 'TextField'; function __construct($name,$value="") { @@ -42,7 +42,7 @@ class TextField extends FormElement { function getAsPassword() { return $this->mPassword; } function toStringControl() { - if (!$this->isEnable()) { + if (!$this->isEnabled()) { $html = "name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n"; } else {