X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=88fb434c01c9f8a7698ddd6de596d9577f02a508;hb=4a605a698d07ecdc11e11aa8921485ace261cdba;hp=e1259d6998307b053913081d5a64d263d033c92c;hpb=6e59f47d1baf9e3d420b4a368dcc005d54b6e599;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index e1259d69..88fb434c 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; } @@ -55,14 +54,14 @@ class TextField extends FormElement { $html .= ( $this->mPassword ? " type=\"password\"" : " type=\"text\""); $html .= " name=\"$this->name\" id=\"$this->id\""; - if ($this->mSize!="") - $html .= " size=\"$this->mSize\""; + if ($this->size!="") + $html .= " size=\"$this->size\""; if ($this->mStyle!="") $html .= " style=\"$this->mStyle\""; - if ($this->mMaxLength!="") - $html .= " maxlength=\"$this->mMaxLength\""; + if ($this->max_length!="") + $html .= " maxlength=\"$this->max_length\""; if ($this->mOnChange!="") $html .= " onchange=\"$this->mOnChange\"";