X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FCheckbox.class.php;h=e3d9cf2e04f4cfc8e66aed58819b4a2c2c18a1c9;hb=cd5e077ecb497431decde4835138b877d63b261c;hp=4c6a9fd77468a873750ab5c49177502ec17d121e;hpb=61efd9d023ae34c1290ef2e1ae25829c509caaee;p=timetracker.git diff --git a/WEB-INF/lib/form/Checkbox.class.php b/WEB-INF/lib/form/Checkbox.class.php index 4c6a9fd7..e3d9cf2e 100644 --- a/WEB-INF/lib/form/Checkbox.class.php +++ b/WEB-INF/lib/form/Checkbox.class.php @@ -31,13 +31,12 @@ import('form.FormElement'); class Checkbox extends FormElement { var $mChecked = false; var $mOptions = null; - var $class = 'Checkbox'; - function __construct($name,$value="") - { - $this->name = $name; - $this->value = $value; - } + function __construct($name, $value = '') { + $this->class = 'Checkbox'; + $this->name = $name; + $this->value = $value; + } function setChecked($value) { $this->mChecked = $value; } function isChecked() { return $this->mChecked; }