From: <var...@us...> - 2014-09-10 14:12:04
|
Revision: 9063 http://sourceforge.net/p/phpwiki/code/9063 Author: vargenau Date: 2014-09-10 14:11:56 +0000 (Wed, 10 Sep 2014) Log Message: ----------- Same signature for all functions handle_plugin_args_cruft Modified Paths: -------------- trunk/lib/plugin/AsciiMath.php trunk/lib/plugin/AsciiSVG.php trunk/lib/plugin/Chart.php trunk/lib/plugin/GraphViz.php trunk/lib/plugin/PageDump.php trunk/lib/plugin/PhpHighlight.php trunk/lib/plugin/Ploticus.php trunk/lib/plugin/Processing.php trunk/lib/plugin/SqlResult.php trunk/lib/plugin/SyntaxHighlighter.php trunk/lib/plugin/WikiPoll.php Modified: trunk/lib/plugin/AsciiMath.php =================================================================== --- trunk/lib/plugin/AsciiMath.php 2014-09-04 16:17:25 UTC (rev 9062) +++ trunk/lib/plugin/AsciiMath.php 2014-09-10 14:11:56 UTC (rev 9063) @@ -51,7 +51,7 @@ return array(); } - function handle_plugin_args_cruft(&$argstr, &$args) + function handle_plugin_args_cruft($argstr, $args) { $this->source = $argstr; } Modified: trunk/lib/plugin/AsciiSVG.php =================================================================== --- trunk/lib/plugin/AsciiSVG.php 2014-09-04 16:17:25 UTC (rev 9062) +++ trunk/lib/plugin/AsciiSVG.php 2014-09-10 14:11:56 UTC (rev 9063) @@ -42,7 +42,7 @@ ); } - function handle_plugin_args_cruft(&$argstr, &$args) + function handle_plugin_args_cruft($argstr, $args) { $this->source = $argstr; } Modified: trunk/lib/plugin/Chart.php =================================================================== --- trunk/lib/plugin/Chart.php 2014-09-04 16:17:25 UTC (rev 9062) +++ trunk/lib/plugin/Chart.php 2014-09-10 14:11:56 UTC (rev 9063) @@ -64,7 +64,7 @@ ); } - function handle_plugin_args_cruft(&$argstr, &$args) + function handle_plugin_args_cruft($argstr, $args) { $this->source = $argstr; } Modified: trunk/lib/plugin/GraphViz.php =================================================================== --- trunk/lib/plugin/GraphViz.php 2014-09-04 16:17:25 UTC (rev 9062) +++ trunk/lib/plugin/GraphViz.php 2014-09-10 14:11:56 UTC (rev 9063) @@ -127,7 +127,7 @@ ); } - function handle_plugin_args_cruft(&$argstr, &$args) + function handle_plugin_args_cruft($argstr, $args) { $this->source = $argstr; } Modified: trunk/lib/plugin/PageDump.php =================================================================== --- trunk/lib/plugin/PageDump.php 2014-09-04 16:17:25 UTC (rev 9062) +++ trunk/lib/plugin/PageDump.php 2014-09-10 14:11:56 UTC (rev 9063) @@ -221,9 +221,6 @@ ); } - // function handle_plugin_args_cruft(&$argstr, &$args) { - // } - function generateMessageId($mailified) { $array = explode("\n", $mailified); Modified: trunk/lib/plugin/PhpHighlight.php =================================================================== --- trunk/lib/plugin/PhpHighlight.php 2014-09-04 16:17:25 UTC (rev 9062) +++ trunk/lib/plugin/PhpHighlight.php 2014-09-10 14:11:56 UTC (rev 9063) @@ -88,7 +88,7 @@ return new RawXml($str); } - function handle_plugin_args_cruft(&$argstr, &$args) + function handle_plugin_args_cruft($argstr, $args) { $this->source = $argstr; } Modified: trunk/lib/plugin/Ploticus.php =================================================================== --- trunk/lib/plugin/Ploticus.php 2014-09-04 16:17:25 UTC (rev 9062) +++ trunk/lib/plugin/Ploticus.php 2014-09-10 14:11:56 UTC (rev 9063) @@ -112,7 +112,7 @@ ); } - function handle_plugin_args_cruft(&$argstr, &$args) + function handle_plugin_args_cruft($argstr, $args) { $this->source = $argstr; } Modified: trunk/lib/plugin/Processing.php =================================================================== --- trunk/lib/plugin/Processing.php 2014-09-04 16:17:25 UTC (rev 9062) +++ trunk/lib/plugin/Processing.php 2014-09-10 14:11:56 UTC (rev 9063) @@ -41,7 +41,7 @@ ); } - function handle_plugin_args_cruft(&$argstr, &$args) + function handle_plugin_args_cruft($argstr, $args) { $this->source = $argstr; } Modified: trunk/lib/plugin/SqlResult.php =================================================================== --- trunk/lib/plugin/SqlResult.php 2014-09-04 16:17:25 UTC (rev 9062) +++ trunk/lib/plugin/SqlResult.php 2014-09-10 14:11:56 UTC (rev 9063) @@ -91,7 +91,6 @@ function handle_plugin_args_cruft($argstr, $args) { $this->_sql = str_replace("\n", " ", $argstr); - return; } function run($dbi, $argstr, &$request, $basepage) Modified: trunk/lib/plugin/SyntaxHighlighter.php =================================================================== --- trunk/lib/plugin/SyntaxHighlighter.php 2014-09-04 16:17:25 UTC (rev 9062) +++ trunk/lib/plugin/SyntaxHighlighter.php 2014-09-10 14:11:56 UTC (rev 9063) @@ -44,7 +44,7 @@ ); } - function handle_plugin_args_cruft(&$argstr, &$args) + function handle_plugin_args_cruft($argstr, $args) { $this->source = $argstr; } Modified: trunk/lib/plugin/WikiPoll.php =================================================================== --- trunk/lib/plugin/WikiPoll.php 2014-09-04 16:17:25 UTC (rev 9062) +++ trunk/lib/plugin/WikiPoll.php 2014-09-10 14:11:56 UTC (rev 9063) @@ -117,7 +117,6 @@ $argstr = str_replace("\n", " ", $argstr); $argstr = str_replace(array("[", "]"), array("_", ""), $argstr); $this->_args = $this->getArgs($argstr, $GLOBALS['request']); - return; } private function str2array($var, $obarray = false) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |