Adjusted time.php to honor note on separate row option.
[timetracker.git] / WEB-INF / lib / form / Hidden.class.php
index 3693f84..6e59bc8 100644 (file)
@@ -30,10 +30,9 @@ import('form.FormElement');
 
 class Hidden extends FormElement {
 
-  function __construct($name, $value = '') {
+  function __construct($name) {
     $this->class = 'Hidden';
     $this->name = $name;
-    $this->value = $value;
   }
 
   function getHtml() {