From 914305022691f9db0ed859301bade6b178f2e1dd Mon Sep 17 00:00:00 2001
From: Andrew O'Neil
Date: Wed, 25 Jun 2008 04:00:03 +0000
Subject: [PATCH] Merged revisions 55730 via svnmerge from
svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.2.2
........
r55730 | wrossiter | 2008-06-05 16:25:08 +1200 (Thu, 05 Jun 2008) | 1 line
MINOR: removed debug statement
........
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@56909 467b73ca-7a2a-4603-9d3b-597d59a354a9
---
parsers/BBCodeParser.php | 1 -
1 file changed, 1 deletion(-)
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);