aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/message_parser.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2012-12-15 18:25:51 -0600
committerNathan Guse <nathaniel.guse@gmail.com>2012-12-15 18:25:51 -0600
commitc9ca7051491143e3c0da43663e85b60e18c6740e (patch)
treeec10169c1d5737f2e48eac0f6997fd6e55716049 /phpBB/includes/message_parser.php
parentd0375c46f91eb88508cbd8e320c7eda78d4f01dd (diff)
parent95bd4d73eb41d677470b0bf77c521ae2a9bb731e (diff)
downloadforums-c9ca7051491143e3c0da43663e85b60e18c6740e.tar
forums-c9ca7051491143e3c0da43663e85b60e18c6740e.tar.gz
forums-c9ca7051491143e3c0da43663e85b60e18c6740e.tar.bz2
forums-c9ca7051491143e3c0da43663e85b60e18c6740e.tar.xz
forums-c9ca7051491143e3c0da43663e85b60e18c6740e.zip
Merge branch 'ticket/11103' of github.com:EXreaction/phpbb3 into ticket/11103
Diffstat (limited to 'phpBB/includes/message_parser.php')
-rw-r--r--phpBB/includes/message_parser.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/phpBB/includes/message_parser.php b/phpBB/includes/message_parser.php
index 1cd2a46fa1..44960dd78d 100644
--- a/phpBB/includes/message_parser.php
+++ b/phpBB/includes/message_parser.php
@@ -702,17 +702,6 @@ class bbcode_firstpass extends bbcode
{
global $config, $user;
- /**
- * If you change this code, make sure the cases described within the following reports are still working:
- * #3572 - [quote="[test]test"]test [ test[/quote] - (correct: parsed)
- * #14667 - [quote]test[/quote] test ] and [ test [quote]test[/quote] (correct: parsed)
- * #14770 - [quote="["]test[/quote] (correct: parsed)
- * [quote="[i]test[/i]"]test[/quote] (correct: parsed)
- * [quote="[quote]test[/quote]"]test[/quote] (correct: parsed - Username displayed as [quote]test[/quote])
- * #20735 - [quote]test[/[/b]quote] test [/quote][/quote] test - (correct: quoted: "test[/[/b]quote] test" / non-quoted: "[/quote] test" - also failed if layout distorted)
- * #40565 - [quote="a"]a[/quote][quote="a]a[/quote] (correct: first quote tag parsed, second quote tag unparsed)
- */
-
$in = str_replace("\r\n", "\n", str_replace('\"', '"', trim($in)));
if (!$in)