alecpl
2011-05-03 7fc056c3ffadefc48bb9f6f91f1ef783c253f5fb
program/include/html.php
@@ -271,7 +271,7 @@
    protected $type = 'text';
    protected $allowed = array('type','name','value','size','tabindex',
   'autocomplete','checked','onchange','onclick','disabled','readonly',
   'spellcheck','results','maxlength','src');
   'spellcheck','results','maxlength','src','multiple');
    /**
     * Object constructor
@@ -524,7 +524,6 @@
        }
    }
    /**
     * Get HTML code for this object
     *
@@ -648,7 +647,6 @@
        }
    }
    /**
     * Jump to next row
     *
@@ -729,5 +727,15 @@
    {
      return count($this->rows);
    }
    /**
     * Remove table body (all rows)
     */
    public function remove_body()
    {
        $this->rows     = array();
        $this->rowindex = 0;
    }
}