X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FCheckbox.class.php;h=c4acbc5f51ee0aeaa011cd54ff39d1a474ca92d4;hb=691958794018beda9788e9bdb47d640a116af492;hp=999bff873e741585d45f8a0b927ce4892f7324f6;hpb=0fa80122e692abac96010f4da8ed55c3aa52b81b;p=timetracker.git diff --git a/WEB-INF/lib/form/Checkbox.class.php b/WEB-INF/lib/form/Checkbox.class.php index 999bff87..c4acbc5f 100644 --- a/WEB-INF/lib/form/Checkbox.class.php +++ b/WEB-INF/lib/form/Checkbox.class.php @@ -29,28 +29,19 @@ import('form.FormElement'); class Checkbox extends FormElement { - var $checked = false; - var $mOptions = null; - function __construct($name, $value = '') { + function __construct($name) { $this->class = 'Checkbox'; $this->name = $name; - $this->value = $value; } - function setChecked($value) { $this->checked = $value; } - function isChecked() { return $this->checked; } - - function setData($value) { $this->mOptions = $value; } - function getData() { return $this->mOptions; } - function getHtml() { if ($this->id == '') $this->id = $this->name; $html = "\n\tid\" name=\"$this->name\""; - if ($this->checked || (($this->value == $this->mOptions) && ($this->value != null))) + if ($this->value) $html.= " checked=\"true\""; if ($this->on_change!="") @@ -63,8 +54,10 @@ class Checkbox extends FormElement { if (!$this->isEnabled()) $html .= " disabled=\"disabled\""; - - $html .= " value=\"".htmlspecialchars($this->mOptions)."\""; + + // Provide a value so that we pass "1" for set checkboxes on form submit. + // Otherwise the default is "on" string, which is not what we want. + $html .= " value=\"1\""; $html .= "/>\n";