summaryrefslogtreecommitdiff
path: root/src/BBCodeParser.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/BBCodeParser.php')
-rw-r--r--src/BBCodeParser.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/BBCodeParser.php b/src/BBCodeParser.php
index 87c4175..0131dde 100644
--- a/src/BBCodeParser.php
+++ b/src/BBCodeParser.php
@@ -89,7 +89,6 @@ class BBCodeParser {
$out .= "\n";
break;
case 'list':
- $out .= "\n";
switch ($arg) {
case '1': $list_counter_stack[] = 1; break;
@@ -175,19 +174,10 @@ class BBCodeParser {
case 'list:u':
# TODO: untested
array_pop($list_counter_stack);
-
- if ($in[$i] != "\n") {
- # add newline after list only if there is not one already
- $out .= "\n";
- }
break;
case '*':
case '*:m':
# TODO: untested
- if ($in[$i] != "\n") {
- # add newline after item only if there is not one already
- $out .= "\n";
- }
break;
case 'img':
# TODO: untested