From: <var...@us...> - 2011-04-11 13:44:22
|
Revision: 8036 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8036&view=rev Author: vargenau Date: 2011-04-11 13:44:13 +0000 (Mon, 11 Apr 2011) Log Message: ----------- Do not trigger error, it happens e.g. for "<<CreateToc pagename=AnotherPage>>" Modified Paths: -------------- trunk/lib/plugin/CreateToc.php Modified: trunk/lib/plugin/CreateToc.php =================================================================== --- trunk/lib/plugin/CreateToc.php 2011-04-11 12:51:58 UTC (rev 8035) +++ trunk/lib/plugin/CreateToc.php 2011-04-11 13:44:13 UTC (rev 8036) @@ -209,7 +209,9 @@ } } } - trigger_error("Heading <$h> $heading </$h> not found\n", E_USER_NOTICE); + // Do not trigger error, it happens e.g. for "<<CreateToc pagename=AnotherPage>>" + // trigger_error("Heading <$h> $heading </$h> not found\n", E_USER_NOTICE); + return 0; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |