Skip to content

Commit

Permalink
Split test into more manageable chunks
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Apr 23, 2014
1 parent 7f88874 commit 2ecf048
Show file tree
Hide file tree
Showing 2 changed files with 210 additions and 235 deletions.
2 changes: 1 addition & 1 deletion framework/Text_Filter/lib/Horde/Text/Filter/Html2text.php
Expand Up @@ -185,7 +185,7 @@ protected function _node($doc, $node)
case 'ul':
case 'dl':
++$this->_indent;
$out .= "\n\n" . $this->_node($doc, $child) . "\n\n";
$out .= "\n" . $this->_node($doc, $child) . "\n";
--$this->_indent;
break;

Expand Down

0 comments on commit 2ecf048

Please sign in to comment.