From 7ee580709bac2705fe30144547b2eefefdb34a12 Mon Sep 17 00:00:00 2001 From: vargenau Date: Thu, 15 Apr 2010 10:01:45 +0000 Subject: [PATCH] Use big value since paging does not work git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@7333 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- lib/PageList.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/PageList.php b/lib/PageList.php index b6acb163c..586b5b982 100644 --- a/lib/PageList.php +++ b/lib/PageList.php @@ -692,7 +692,9 @@ class PageList { * 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 -- 2.45.0