Fixed buffer being discarded
authorAlexander Ebert <ebert@woltlab.com>
Thu, 29 Sep 2016 11:17:23 +0000 (13:17 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Thu, 29 Sep 2016 11:17:23 +0000 (13:17 +0200)
wcfsetup/install/files/lib/system/bbcode/HtmlBBCodeParser.class.php

index 6955a21d41f7c9e5e1dc47cf802b19de8ef6dce3..b65a9cf4997b44a4d9c35348dd7cfb62a6b0d6f1 100644 (file)
@@ -167,7 +167,7 @@ class HtmlBBCodeParser extends BBCodeParser {
                }
                
                // text array always holds one more item for the content after the last tag
-               $newTextArray[] = $this->textArray[count($this->textArray) - 1];
+               $newTextArray[] = $buffer . $this->textArray[count($this->textArray) - 1];
                
                $this->tagArray = $newTagArray;
                $this->textArray = $newTextArray;