Work in progress on project_required option (incomplete). Also started to integrate...
[timetracker.git] / WEB-INF / lib / form / TextField.class.php
index 044b3d6..4904e24 100644 (file)
@@ -30,11 +30,10 @@ import('form.FormElement');
 
 class TextField extends FormElement {
 
-  function __construct($name, $value = '')
+  function __construct($name)
   {
     $this->class = 'TextField';
     $this->name = $name;
-    $this->value = $value;
   }
 
   // TODO: refactoring ongoing down from here.