X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/6e59f47d1baf9e3d420b4a368dcc005d54b6e599..cb8e3de960b758147b34d8323054e7de70548619:/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 e1259d69..4766d911 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -29,14 +29,13 @@ import('form.FormElement'); class TextField extends FormElement { - var $mValue; var $mPassword = false; var $cClassName = "TextField"; function __construct($name,$value="") { - $this->name = $name; - $this->mValue = $value; + $this->name = $name; + $this->value = $value; } function setAsPassword($name) { $this->mPassword = $name; }