From: <var...@us...> - 2009-10-17 15:19:47
|
Revision: 7216 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7216&view=rev Author: vargenau Date: 2009-10-17 15:19:39 +0000 (Sat, 17 Oct 2009) Log Message: ----------- ENABLE_MARKUP_TEMPLATE removed, it had to be true so that Wikicreole syntax for images work Modified Paths: -------------- trunk/lib/InlineParser.php Modified: trunk/lib/InlineParser.php =================================================================== --- trunk/lib/InlineParser.php 2009-10-17 15:14:00 UTC (rev 7215) +++ trunk/lib/InlineParser.php 2009-10-17 15:19:39 UTC (rev 7216) @@ -1197,8 +1197,7 @@ $this->_addMarkup(new Markup_color); // Markup_wikicreole_preformatted must be before Markup_template_plugin $this->_addMarkup(new Markup_wikicreole_preformatted); - if (ENABLE_MARKUP_TEMPLATE and !$non_default) - $this->_addMarkup(new Markup_template_plugin); + $this->_addMarkup(new Markup_template_plugin); // This does not work yet if (0 and PLUGIN_MARKUP_MAP and !$non_default) $this->_addMarkup(new Markup_xml_plugin); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |