From: <var...@us...> - 2016-02-16 12:00:27
|
Revision: 9805 http://sourceforge.net/p/phpwiki/code/9805 Author: vargenau Date: 2016-02-16 12:00:24 +0000 (Tue, 16 Feb 2016) Log Message: ----------- Remove call to nonexistent setTightness Modified Paths: -------------- trunk/lib/InlineParser.php Modified: trunk/lib/InlineParser.php =================================================================== --- trunk/lib/InlineParser.php 2016-02-16 11:52:24 UTC (rev 9804) +++ trunk/lib/InlineParser.php 2016-02-16 12:00:24 UTC (rev 9805) @@ -1256,7 +1256,6 @@ and is_a($markup, 'Markup_plugin') ) { $current =& $output->_content[count($output->_content) - 1]; - $current->setTightness(true, true); } $output->pushContent($match->prematch); $text = $match->postmatch; @@ -1280,13 +1279,7 @@ else $current = $markup->markup($match->match, $body); $input = $match->postmatch; - if (isset($markup) and is_object($markup) - and is_a($markup, 'Markup_plugin') - ) { - $current->setTightness(true, true); - } $output->pushContent($match->prematch, $current); - $match = $regexps->match($input); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |