From: <var...@us...> - 2014-12-03 09:33:56
|
Revision: 9407 http://sourceforge.net/p/phpwiki/code/9407 Author: vargenau Date: 2014-12-03 09:33:47 +0000 (Wed, 03 Dec 2014) Log Message: ----------- Set limit to 0 instead of false to please test Modified Paths: -------------- trunk/lib/plugin/PageHistory.php Modified: trunk/lib/plugin/PageHistory.php =================================================================== --- trunk/lib/plugin/PageHistory.php 2014-12-02 15:51:24 UTC (rev 9406) +++ trunk/lib/plugin/PageHistory.php 2014-12-03 09:33:47 UTC (rev 9407) @@ -284,7 +284,7 @@ return array('days' => false, 'show_minor' => true, 'show_major' => true, - 'limit' => false, + 'limit' => 0, 'page' => '[pagename]', 'format' => false); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |