diff --git a/parsers/BBCodeParser.php b/parsers/BBCodeParser.php index a11058bfc..2bd07589c 100644 --- a/parsers/BBCodeParser.php +++ b/parsers/BBCodeParser.php @@ -106,7 +106,6 @@ class BBCodeParser extends TextParser { function parse() { $this->content = str_replace(array('&', '<', '>'), array('&', '<', '>'), $this->content); $this->content = SSHTMLBBCodeParser::staticQparse($this->content); - Debug::message($this->content); $this->content = "

".$this->content."

"; $this->content = preg_replace("/([^>\s]\s*)\n\n/", '$1

', $this->content); $this->content = preg_replace("/([^>\s]\s*)\n/", '$1
', $this->content);