From: <var...@us...> - 2016-10-14 08:33:14
|
Revision: 9965 http://sourceforge.net/p/phpwiki/code/9965 Author: vargenau Date: 2016-10-14 08:33:12 +0000 (Fri, 14 Oct 2016) Log Message: ----------- Fix getImageType prototype Modified Paths: -------------- trunk/lib/WikiPluginCached.php Modified: trunk/lib/WikiPluginCached.php =================================================================== --- trunk/lib/WikiPluginCached.php 2016-10-14 08:24:17 UTC (rev 9964) +++ trunk/lib/WikiPluginCached.php 2016-10-14 08:33:12 UTC (rev 9965) @@ -320,7 +320,7 @@ * @param Request $request * @return string 'png', 'jpeg' or 'gif' */ - protected function getImageType(&$dbi, $argarray, &$request) + protected function getImageType($dbi, $argarray, &$request) { if (in_array($argarray['imgtype'], preg_split('/\s*:\s*/', PLUGIN_CACHED_IMGTYPES))) return $argarray['imgtype']; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |