From: <var...@us...> - 2009-01-02 10:54:06
|
Revision: 6362 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6362&view=rev Author: vargenau Date: 2009-01-02 10:54:00 +0000 (Fri, 02 Jan 2009) Log Message: ----------- No trigger_error Modified Paths: -------------- trunk/lib/plugin/WikicreoleTable.php Modified: trunk/lib/plugin/WikicreoleTable.php =================================================================== --- trunk/lib/plugin/WikicreoleTable.php 2009-01-01 20:15:34 UTC (rev 6361) +++ trunk/lib/plugin/WikicreoleTable.php 2009-01-02 10:54:00 UTC (rev 6362) @@ -89,7 +89,7 @@ $line = substr($line, 0, -1); } if ($line[0] != '|') { - trigger_error(sprintf(_("Line %s does not begin with a '|'."), $line), E_USER_WARNING); + // trigger_error(sprintf(_("Line %s does not begin with a '|'."), $line), E_USER_WARNING); } else { $table->pushContent($this->_parse_row($line, $basepage)); } @@ -120,11 +120,6 @@ } } -// $Log: not supported by cvs2svn $ -// Revision 1.1 2008/08/19 17:58:25 vargenau -// Implement Wikicreole syntax for tables -// - // For emacs users // Local Variables: // mode: php This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |