]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/form/TextArea.class.php
Ongoing refactoring - renamed a variable.
[timetracker.git] / WEB-INF / lib / form / TextArea.class.php
index ecc2010bacd82b758fb0e9d4d4de7520b7d5b705..6b3b5ee76fbdbd912daad62db9a92d1d124a055f 100644 (file)
@@ -29,7 +29,6 @@
 import('form.FormElement');
        
 class TextArea extends FormElement {
-    var $mValue;
     var $mPassword     = false;
     var $mColumns      = "";
     var $mRows         = "";
@@ -37,8 +36,8 @@ class TextArea extends FormElement {
 
        function __construct($name,$value="")
        {
-               $this->name                     = $name;
-               $this->mValue                   = $value;
+               $this->name = $name;
+               $this->value = $value;
        }
        
        function setColumns($value)     { $this->mColumns = $value;     }