diff options
author | thomascube <thomas@roundcube.net> | 2008-06-14 12:23:08 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-06-14 12:23:08 +0000 |
commit | 83a7636872d58f044d1fac444268dd2e7c7ebaee (patch) | |
tree | f22bb7491d67ee0f5f509b70625b48d963a7e9eb /program/include/html.php | |
parent | f0d4b72a4e1d4292fe99e04836274b52f30c5cf4 (diff) |
More code cleanup
Diffstat (limited to 'program/include/html.php')
-rw-r--r-- | program/include/html.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/program/include/html.php b/program/include/html.php index 4ac45da65..4057bd14d 100644 --- a/program/include/html.php +++ b/program/include/html.php @@ -571,7 +571,7 @@ class html_table extends html * @param array Cell attributes * @param string Cell content */ - private function add_header($attr, $cont) + public function add_header($attr, $cont) { if (is_string($attr)) $attr = array('class' => $attr); @@ -587,7 +587,7 @@ class html_table extends html * * @param array Row attributes */ - private function add_row($attr = array()) + public function add_row($attr = array()) { $this->rowindex++; $this->colindex = 0; @@ -612,7 +612,7 @@ class html_table extends html if (!empty($this->header)) { $rowcontent = ''; foreach ($this->header as $c => $col) { - $rowcontent .= self::tag('th', $col->attrib, $col->content); + $rowcontent .= self::tag('td', $col->attrib, $col->content); } $thead = self::tag('thead', null, self::tag('tr', null, $rowcontent)); } @@ -624,7 +624,7 @@ class html_table extends html } if ($r < $this->rowindex || count($row->cells)) { - $tbody .= self::tag('tr', $rows->attrib, $rowcontent); + $tbody .= self::tag('tr', $row->attrib, $rowcontent); } } |