]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/form/Checkbox.class.php
Some renaming.
[timetracker.git] / WEB-INF / lib / form / Checkbox.class.php
index 428d4289103b7111c1147d361607ec9c2ca3b8b3..7a49a6fb5b984e0c56dd7dd182ef4d60c2f29eda 100644 (file)
@@ -53,11 +53,11 @@ class Checkbox extends FormElement {
                $html = "\n\t<input type=\"checkbox\"";
                $html .= " name=\"$this->name\" id=\"$this->id\"";
 
-               if ($this->mOnChange!="")
-                  $html .= " onchange=\"$this->mOnChange\"";
+               if ($this->on_change!="")
+                  $html .= " onchange=\"$this->on_change\"";
                   
-               if ($this->mStyle!="")
-                  $html .= " style=\"$this->mStyle\"";
+               if ($this->style!="")
+                  $html .= " style=\"$this->style\"";
 
                if ($this->mChecked || (($this->value == $this->mOptions) && ($this->value != null)))
                   $html .= " checked=\"true\"";