]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/form/TextArea.class.php
Refactoring - removed not used default parameters from constructors.
[timetracker.git] / WEB-INF / lib / form / TextArea.class.php
index 66101b98d9affb210b06caef49760e2463978fc5..5d48466853b8fcb8537e340724bc71b41f633dbd 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; }