Update of /cvsroot/phpwiki/phpwiki/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25606
Modified Files:
PageList.php
Log Message:
Valid HTML code: tfoot must be before tbody
Index: PageList.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/PageList.php,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -2 -b -p -d -r1.149 -r1.150
--- PageList.php 26 Jan 2008 14:13:29 -0000 1.149
+++ PageList.php 31 Jan 2008 20:28:47 -0000 1.150
@@ -1429,7 +1429,7 @@ class PageList {
if ($this->_options['paging'] != 'bottom')
$table->pushContent(HTML::thead($paging));
- $table->pushContent(HTML::tbody(false, HTML($row, $rows)));
if ($this->_options['paging'] != 'top')
$table->pushContent(HTML::tfoot($paging));
+ $table->pushContent(HTML::tbody(false, HTML($row, $rows)));
return $table;
} else {
@@ -1689,4 +1689,7 @@ extends PageList {
// $Log$
+// Revision 1.150 2008/01/31 20:28:47 vargenau
+// Valid HTML code: tfoot must be before tbody
+//
// Revision 1.149 2008/01/26 14:13:29 vargenau
// XHTML is case-sensitive; use correct case
|