From: <var...@us...> - 2014-06-12 15:10:10
|
Revision: 8893 http://sourceforge.net/p/phpwiki/code/8893 Author: vargenau Date: 2014-06-12 15:10:07 +0000 (Thu, 12 Jun 2014) Log Message: ----------- Use CSS Modified Paths: -------------- trunk/lib/PageList.php Modified: trunk/lib/PageList.php =================================================================== --- trunk/lib/PageList.php 2014-06-12 14:33:34 UTC (rev 8892) +++ trunk/lib/PageList.php 2014-06-12 15:10:07 UTC (rev 8893) @@ -1677,13 +1677,13 @@ for ($i = $offset; $i < $offset + $count; $i += $length) { $this->_saveOptions(array('cols' => 0, 'paging' => 'none')); $this->_pages = array_slice($this->_pages, $i, $length); - $cols->pushContent(HTML::td( /*array('width' => $width),*/ - $this->_generateList())); + $cols->pushContent(HTML::td($this->_generateList())); $this->_restoreOptions(); } // speed up table rendering by defining colgroups $out->pushContent(HTML::table(HTML::colgroup - (array('span' => $this->_options['cols'], 'width' => $width)), + (array('span' => $this->_options['cols'], + 'style' => 'width: '.$width)), $cols)); return $out; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |