]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/form/CheckboxGroup.class.php
Refactoring - removed not used default parameters from constructors.
[timetracker.git] / WEB-INF / lib / form / CheckboxGroup.class.php
index f6722704bfacfb36b165dc466b3c13e8db6ce48e..0bb3ac42df39da71afc3a0af9abc2b718cb88d61 100644 (file)
@@ -38,10 +38,9 @@ class CheckboxGroup extends FormElement {
     var $lSelAll       = "All";
     var $lSelNone      = "None";
 
-  function __construct($name, $value = '') {
+  function __construct($name) {
     $this->class = 'CheckboxGroup';
     $this->name = $name;
-    $this->value = $value;
   }
 
        function setChecked($value)     { $this->mChecked = $value; }