From: <var...@us...> - 2013-04-26 13:41:40
|
Revision: 8774 http://sourceforge.net/p/phpwiki/code/8774 Author: vargenau Date: 2013-04-26 13:41:37 +0000 (Fri, 26 Apr 2013) Log Message: ----------- Initialize variables Modified Paths: -------------- trunk/lib/WikiPlugin.php Modified: trunk/lib/WikiPlugin.php =================================================================== --- trunk/lib/WikiPlugin.php 2013-04-26 13:32:26 UTC (rev 8773) +++ trunk/lib/WikiPlugin.php 2013-04-26 13:41:37 UTC (rev 8774) @@ -2,6 +2,8 @@ class WikiPlugin { + protected $_pi; + function getDefaultArguments() { return array('description' => $this->getDescription()); @@ -186,7 +188,12 @@ } } while (preg_match("/^$opt_ws $argspec_p $opt_ws/x", $argstr, $m)) { - //@ list(,$arg,$op,$qq_val,$q_val,$gt_val,$word_val) = $m; + $qq_val = ''; + $q_val = ''; + $gt_val = ''; + $word_val = ''; + $op = ''; + $arg = ''; $count = count($m); if ($count >= 7) { list(, $arg, $op, $qq_val, $q_val, $gt_val, $word_val) = $m; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |