Ongoing refactoring - renamed a variable.
[timetracker.git] / WEB-INF / lib / form / TextField.class.php
index e1259d6..4766d91 100644 (file)
 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;     }