diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-03-13 14:48:21 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-03-13 14:48:21 +0100 |
commit | 17b8e93a5350e297f9be0925120f0b6cf34f5ffe (patch) | |
tree | 48d26addd11f8c3f267e63580997ca7bf3370dea /tests/text_processing/decode_message_test.php | |
parent | dad531e4b2c19dd22b8dd6a15e410e187a67fe46 (diff) | |
download | forums-17b8e93a5350e297f9be0925120f0b6cf34f5ffe.tar forums-17b8e93a5350e297f9be0925120f0b6cf34f5ffe.tar.gz forums-17b8e93a5350e297f9be0925120f0b6cf34f5ffe.tar.bz2 forums-17b8e93a5350e297f9be0925120f0b6cf34f5ffe.tar.xz forums-17b8e93a5350e297f9be0925120f0b6cf34f5ffe.zip |
[ticket/14527] Decode automatically generated postlink without prefix
The http prefix gets automatically added and should be removed prior
to outputting the post to the user.
PHPBB3-14527
Diffstat (limited to 'tests/text_processing/decode_message_test.php')
-rw-r--r-- | tests/text_processing/decode_message_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/text_processing/decode_message_test.php b/tests/text_processing/decode_message_test.php index 6ee5f91578..fd1719fedc 100644 --- a/tests/text_processing/decode_message_test.php +++ b/tests/text_processing/decode_message_test.php @@ -49,7 +49,7 @@ class phpbb_text_processing_decode_message_test extends phpbb_test_case ), array( '<!-- w --><a class="postlink" href="http://www.phpbb.com">www.phpbb.com</a><!-- w -->', - 'http://www.phpbb.com' + 'www.phpbb.com' ), array( '<!-- m --><a class="postlink" href="http://www.phpbb.com">http://www.phpbb.com</a><!-- m -->', |