X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/ac5189157ef60820dd125400baee9f408a9ba2ea..60d2288b7fca6caf0f5d9d3eee972f040eb24fb0:/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 d7e38aef..b4b1c5d6 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -30,10 +30,11 @@ import('form.FormElement'); class TextField extends FormElement { var $mPassword = false; - var $class = 'TextField'; + //var $class = 'TextField'; function __construct($name,$value="") { + $this->class = 'TextField'; $this->name = $name; $this->value = $value; } @@ -41,7 +42,7 @@ class TextField extends FormElement { function setAsPassword($name) { $this->mPassword = $name; } function getAsPassword() { return $this->mPassword; } - function toStringControl() { + function getHtml() { if (!$this->isEnabled()) { $html = "name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n"; } else {