From: <var...@us...> - 2014-07-27 15:49:24
|
Revision: 9009 http://sourceforge.net/p/phpwiki/code/9009 Author: vargenau Date: 2014-07-27 15:49:16 +0000 (Sun, 27 Jul 2014) Log Message: ----------- Remove static Modified Paths: -------------- trunk/lib/WikiPluginCached.php Modified: trunk/lib/WikiPluginCached.php =================================================================== --- trunk/lib/WikiPluginCached.php 2014-07-25 16:03:00 UTC (rev 9008) +++ trunk/lib/WikiPluginCached.php 2014-07-27 15:49:16 UTC (rev 9009) @@ -701,7 +701,7 @@ * @param $errorformat string outputs errors in 'png', 'gif', 'jpg' or 'html' * @return bool error status; true=ok; false=error */ - static private function produceImage(&$content, $plugin, $dbi, $argarray, $request, $errorformat) + private function produceImage(&$content, $plugin, $dbi, $argarray, $request, $errorformat) { $plugin->resetError(); $content['html'] = $imagehandle = false; @@ -915,7 +915,7 @@ * @param string $errortext guess what? * @return void */ - static protected function printError($imgtype, $errortext) + protected function printError($imgtype, $errortext) { $imgtype = $this->decideImgType($imgtype); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |