From: <var...@us...> - 2009-09-05 17:12:27
|
Revision: 7100 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7100&view=rev Author: vargenau Date: 2009-09-05 17:12:17 +0000 (Sat, 05 Sep 2009) Log Message: ----------- Remove empty _setTightness Modified Paths: -------------- trunk/lib/BlockParser.php Modified: trunk/lib/BlockParser.php =================================================================== --- trunk/lib/BlockParser.php 2009-09-05 10:48:26 UTC (rev 7099) +++ trunk/lib/BlockParser.php 2009-09-05 17:12:17 UTC (rev 7100) @@ -477,7 +477,6 @@ } function _setTightness ($top, $bot) { - // $this->_element->setTightness($top, $bot); } function merge ($followingBlock) { @@ -1213,10 +1212,6 @@ $this->_element = new Block_HtmlElement('hr'); return true; } - - function _setTightness($top, $bot) { - // Don't tighten <hr/>s - } } class Block_heading extends BlockMarkup @@ -1232,10 +1227,6 @@ return true; } - - function _setTightness($top, $bot) { - // Don't tighten headers. - } } class Block_heading_wikicreole extends BlockMarkup @@ -1255,10 +1246,6 @@ return true; } - - function _setTightness($top, $bot) { - // Don't tighten headers. - } } class Block_p extends BlockMarkup @@ -1345,12 +1332,8 @@ } } $this->_element = new Block_HtmlElement($tag, $args, $content); - //$this->_element->setTightness($tag == 'span', $tag == 'span'); return true; } - function _setTightness($top, $bot) { - // Don't tighten user <div|span> - } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |