aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-11-19 00:41:16 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-11-19 00:41:16 +0000
commit8391d6d71dfdb7c27a2b1313c38f6adbd1f1195e (patch)
tree275e1980f95d1eda3e28a78994d32bbada040589 /phpBB
parenta8eb642053ce7484bb122cac09af352ba3b75533 (diff)
downloadforums-8391d6d71dfdb7c27a2b1313c38f6adbd1f1195e.tar
forums-8391d6d71dfdb7c27a2b1313c38f6adbd1f1195e.tar.gz
forums-8391d6d71dfdb7c27a2b1313c38f6adbd1f1195e.tar.bz2
forums-8391d6d71dfdb7c27a2b1313c38f6adbd1f1195e.tar.xz
forums-8391d6d71dfdb7c27a2b1313c38f6adbd1f1195e.zip
Where are you coming from $in? I do not think i invited you...
git-svn-id: file:///svn/phpbb/trunk@6603 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/message_parser.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/message_parser.php b/phpBB/includes/message_parser.php
index 6270da8986..f0982ca12b 100644
--- a/phpBB/includes/message_parser.php
+++ b/phpBB/includes/message_parser.php
@@ -86,7 +86,7 @@ class bbcode_firstpass extends bbcode
// Add newline at the end and in front of each quote block to prevent parsing errors (urls, smilies, etc.)
if (strpos($this->message, '[quote') !== false)
{
- $in = str_replace("\r\n", "\n", $this->message);
+ $this->message = str_replace("\r\n", "\n", $this->message);
// We strip newlines and spaces after and before quotes in quotes (trimming)
$this->message = preg_replace(array('#\[quote(=&quot;.*?&quot;)?\]([\s|\n]+)#is', '#([\s|\n]+)\[\/quote\]#is'), array("[quote\\1]", "[/quote]"), $this->message);