]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/form/Checkbox.class.php
Ongoing refactoring of form controls.
[timetracker.git] / WEB-INF / lib / form / Checkbox.class.php
index 5ba7916513402b7c154b2d9f577ad731f30e5ba7..8ee4fea03fdc319321558727765a6460855cbb4c 100644 (file)
@@ -35,7 +35,7 @@ class Checkbox extends FormElement {
 
        function __construct($name,$value="")
        {
-               $this->mName                    = $name;
+               $this->name                     = $name;
                $this->mValue                   = $value;
        }
 
@@ -48,10 +48,10 @@ class Checkbox extends FormElement {
        function toStringControl()      {
                if (!$this->isRenderable()) return "";
            
-           if ($this->mId=="") $this->mId = $this->mName;
+           if ($this->id=="") $this->id = $this->name;
            
                $html = "\n\t<input type=\"checkbox\"";
-               $html .= " name=\"$this->mName\" id=\"$this->mId\"";
+               $html .= " name=\"$this->name\" id=\"$this->id\"";
                
                if ($this->mTabindex!="")
                   $html .= " tabindex=\"$this->mTabindex\"";