X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/6e59f47d1baf9e3d420b4a368dcc005d54b6e599..cb8e3de960b758147b34d8323054e7de70548619:/WEB-INF/lib/form/Checkbox.class.php diff --git a/WEB-INF/lib/form/Checkbox.class.php b/WEB-INF/lib/form/Checkbox.class.php index 8ee4fea0..6822adf7 100644 --- a/WEB-INF/lib/form/Checkbox.class.php +++ b/WEB-INF/lib/form/Checkbox.class.php @@ -35,8 +35,8 @@ class Checkbox extends FormElement { function __construct($name,$value="") { - $this->name = $name; - $this->mValue = $value; + $this->name = $name; + $this->value = $value; } function setChecked($value) { $this->mChecked = $value; } @@ -62,7 +62,7 @@ class Checkbox extends FormElement { if ($this->mStyle!="") $html .= " style=\"$this->mStyle\""; - if ($this->mChecked || (($this->mValue == $this->mOptions) && ($this->mValue != null))) + if ($this->mChecked || (($this->value == $this->mOptions) && ($this->value != null))) $html .= " checked=\"true\""; if (!$this->isEnable())