From: <var...@us...> - 2014-11-25 16:03:50
|
Revision: 9373 http://sourceforge.net/p/phpwiki/code/9373 Author: vargenau Date: 2014-11-25 16:03:47 +0000 (Tue, 25 Nov 2014) Log Message: ----------- Do not call nonstatic function statically Modified Paths: -------------- trunk/lib/plugin/RecentChangesCached.php Modified: trunk/lib/plugin/RecentChangesCached.php =================================================================== --- trunk/lib/plugin/RecentChangesCached.php 2014-11-25 16:02:37 UTC (rev 9372) +++ trunk/lib/plugin/RecentChangesCached.php 2014-11-25 16:03:47 UTC (rev 9373) @@ -46,12 +46,13 @@ function getDescription() { - return 'Cache output of RecentChanges called with default arguments.'; + return _('Cache output of RecentChanges called with default arguments.'); } function getDefaultArguments() { - return WikiPlugin_RecentChanges::getDefaultArguments(); + $rc = new WikiPlugin_RecentChanges(); + return $rc->getDefaultArguments(); } function getExpire($dbi, $argarray, $request) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |