From: <var...@us...> - 2013-04-16 14:55:36
|
Revision: 8754 http://sourceforge.net/p/phpwiki/code/8754 Author: vargenau Date: 2013-04-16 14:55:33 +0000 (Tue, 16 Apr 2013) Log Message: ----------- No underscore for private parse_row function Modified Paths: -------------- trunk/lib/plugin/WikicreoleTable.php Modified: trunk/lib/plugin/WikicreoleTable.php =================================================================== --- trunk/lib/plugin/WikicreoleTable.php 2013-04-16 14:42:30 UTC (rev 8753) +++ trunk/lib/plugin/WikicreoleTable.php 2013-04-16 14:55:33 UTC (rev 8754) @@ -89,7 +89,7 @@ $line = substr($line, 0, -1); } if ($line[0] == '|') { - $table[] = $this->_parse_row($line); + $table[] = $this->parse_row($line); } } @@ -135,7 +135,7 @@ return $htmltable; } - private function _parse_row($line) + private function parse_row($line) { $brkt_link = "\\[ .*? [^]\s] .*? \\]"; $cell_content = "(?: [^[] | " . ESCAPE_CHAR . "\\[ | $brkt_link )*?"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |