aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/message_parser.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-12-14 12:58:57 +0100
committerJoas Schilling <nickvergessen@gmx.de>2012-12-14 12:58:57 +0100
commitade9f831aa151de428c4d2b33fce48f9733db336 (patch)
tree3707f6b109e9b177e2ed99dec74620c043576563 /phpBB/includes/message_parser.php
parent754dc9c1592001ac4f223358fd708bd338f49fb3 (diff)
downloadforums-ade9f831aa151de428c4d2b33fce48f9733db336.tar
forums-ade9f831aa151de428c4d2b33fce48f9733db336.tar.gz
forums-ade9f831aa151de428c4d2b33fce48f9733db336.tar.bz2
forums-ade9f831aa151de428c4d2b33fce48f9733db336.tar.xz
forums-ade9f831aa151de428c4d2b33fce48f9733db336.zip
[ticket/11250] Move quote special cases from class to unit tests
PHPBB3-11250
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)