Work in progress on project_required option (incomplete). Also started to integrate...
[timetracker.git] / WEB-INF / lib / form / TextArea.class.php
index 66101b9..5d48466 100644 (file)
@@ -33,13 +33,12 @@ class TextArea extends FormElement {
     var $mRows         = "";
     var $mOnKeyPress   = "";
 
-  function __construct($name, $value = '')
+  function __construct($name)
   {
     $this->class = 'TextArea';
     $this->name = $name;
-    $this->value = $value;
   }
-       
+
        function setColumns($value)     { $this->mColumns = $value;     }
        function getColumns()   { return $this->mColumns; }