From: <var...@us...> - 2010-04-15 10:01:51
|
Revision: 7333 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7333&view=rev Author: vargenau Date: 2010-04-15 10:01:45 +0000 (Thu, 15 Apr 2010) Log Message: ----------- Use big value since paging does not work Modified Paths: -------------- trunk/lib/PageList.php Modified: trunk/lib/PageList.php =================================================================== --- trunk/lib/PageList.php 2010-04-15 09:27:52 UTC (rev 7332) +++ trunk/lib/PageList.php 2010-04-15 10:01:45 UTC (rev 7333) @@ -692,7 +692,9 @@ * These options may also be given to _generate(List|Table) later * But limit and offset might help the query WikiDB::getAllPages() */ - 'limit' => 50, // number of rows (pagesize) + // Use big value since paging does not work. + // 'limit' => 50, // number of rows (pagesize) + 'limit' => 5000, // number of rows (pagesize) 'paging' => 'auto', // 'auto' top + bottom rows if applicable // // 'top' top only if applicable // // 'bottom' bottom only if applicable This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |