X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/04bc6bdd39d67bcf9f63d8af4b067f1fafc06f8a..61efd9d023ae34c1290ef2e1ae25829c509caaee:/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 20b7fc6e..c9ffaaed 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="") { @@ -41,7 +41,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 {