aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-05-02 19:41:32 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-05-02 19:41:32 +0200
commitccf5575dd800ae1c3754f747a9b4d47e2542746b (patch)
tree06ad551debabb89918dfa3e7b8585a090957c27b /tests
parent21b52567408341fcb69baae66c051f4d0a0e256b (diff)
parent06a95487feac7a7fae6f9afdd81250fbf5925041 (diff)
downloadforums-ccf5575dd800ae1c3754f747a9b4d47e2542746b.tar
forums-ccf5575dd800ae1c3754f747a9b4d47e2542746b.tar.gz
forums-ccf5575dd800ae1c3754f747a9b4d47e2542746b.tar.bz2
forums-ccf5575dd800ae1c3754f747a9b4d47e2542746b.tar.xz
forums-ccf5575dd800ae1c3754f747a9b4d47e2542746b.zip
Merge pull request #5577 from JoshyPHP/ticket/16034
[ticket/16034] Fix [url=] links being incorrectly shortened
Diffstat (limited to 'tests')
-rw-r--r--tests/text_formatter/s9e/default_formatting_test.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/text_formatter/s9e/default_formatting_test.php b/tests/text_formatter/s9e/default_formatting_test.php
index 05a41c5095..a35c9138a5 100644
--- a/tests/text_formatter/s9e/default_formatting_test.php
+++ b/tests/text_formatter/s9e/default_formatting_test.php
@@ -254,6 +254,10 @@ class phpbb_textformatter_s9e_default_formatting_test extends phpbb_test_case
'<a href="http://example.org/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" class="postlink">xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</a>'
),
array(
+ '[url=http://example.org/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx]http://example.org/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx[/url]',
+ '<a href="http://example.org/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" class="postlink">http://example.org/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</a>'
+ ),
+ array(
'[quote="[url=http://example.org]xxx[/url]"]...[/quote]',
'<blockquote><div><cite><a href="http://example.org" class="postlink">xxx</a> wrote:</cite>...</div></blockquote>'
),