|
From: <var...@us...> - 2014-09-29 16:35:15
|
Revision: 9137
http://sourceforge.net/p/phpwiki/code/9137
Author: vargenau
Date: 2014-09-29 16:35:13 +0000 (Mon, 29 Sep 2014)
Log Message:
-----------
checkCall1 and checkCall2 are not static
Modified Paths:
--------------
trunk/lib/WikiPluginCached.php
Modified: trunk/lib/WikiPluginCached.php
===================================================================
--- trunk/lib/WikiPluginCached.php 2014-09-29 16:34:31 UTC (rev 9136)
+++ trunk/lib/WikiPluginCached.php 2014-09-29 16:35:13 UTC (rev 9137)
@@ -643,7 +643,7 @@
* Param id and param plugincall are
* also return values.
*/
- private static function checkCall1(&$id, &$plugincall, $cache, $request, $errorformat)
+ private function checkCall1(&$id, &$plugincall, $cache, $request, $errorformat)
{
$id = $request->getArg('id');
$plugincall = rawurldecode($request->getArg('args'));
@@ -671,7 +671,7 @@
* @return bool false if an error occurs, true otherwise.
*
*/
- static private function checkCall2(&$plugincall, $request)
+ private function checkCall2(&$plugincall, $request)
{
// if plugincall wasn't sent by URL, it must have been
// stored in a session var instead and we can retreive it from there
@@ -915,7 +915,7 @@
* @param string $errortext guess what?
* @return void
*/
- protected function printError($imgtype, $errortext)
+ public 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.
|