X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FCheckbox.class.php;fp=WEB-INF%2Flib%2Fform%2FCheckbox.class.php;h=c4acbc5f51ee0aeaa011cd54ff39d1a474ca92d4;hb=058d776c118501eb510967c8b870bc346bc39e71;hp=c27cab24c8a1705cfbc0bc2694fbf0b3b26a2528;hpb=4fdb2cd8b1c8990a7ea8ed40b275dc51174e6585;p=timetracker.git diff --git a/WEB-INF/lib/form/Checkbox.class.php b/WEB-INF/lib/form/Checkbox.class.php index c27cab24..c4acbc5f 100644 --- a/WEB-INF/lib/form/Checkbox.class.php +++ b/WEB-INF/lib/form/Checkbox.class.php @@ -29,27 +29,19 @@ import('form.FormElement'); class Checkbox extends FormElement { - var $checked = false; - var $mOptions = null; function __construct($name) { $this->class = 'Checkbox'; $this->name = $name; } - 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!="") @@ -62,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";