From: <var...@us...> - 2009-01-24 11:09:43
|
Revision: 6438 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6438&view=rev Author: vargenau Date: 2009-01-24 11:09:34 +0000 (Sat, 24 Jan 2009) Log Message: ----------- nowiki_wikicreole must be before template_plugin Modified Paths: -------------- trunk/lib/BlockParser.php Modified: trunk/lib/BlockParser.php =================================================================== --- trunk/lib/BlockParser.php 2009-01-24 11:06:22 UTC (rev 6437) +++ trunk/lib/BlockParser.php 2009-01-24 11:09:34 UTC (rev 6438) @@ -366,9 +366,10 @@ static $_regexpset, $_block_types; if (!is_object($_regexpset)) { + // nowiki_wikicreole must be before template_plugin $Block_types = array - ('template_plugin', 'oldlists', 'list', 'dl', 'table_dl', 'table_wikicreole', 'table_mediawiki', - 'blockquote', 'heading', 'heading_wikicreole', 'hr', 'pre', 'nowiki_wikicreole', 'email_blockquote', + ('nowiki_wikicreole', 'template_plugin', 'oldlists', 'list', 'dl', 'table_dl', 'table_wikicreole', 'table_mediawiki', + 'blockquote', 'heading', 'heading_wikicreole', 'hr', 'pre', 'email_blockquote', 'plugin', 'plugin_wikicreole', 'p'); // insert it before p! if (ENABLE_MARKUP_DIVSPAN) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |