aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_content.php
diff options
context:
space:
mode:
authorrxu <rxu@mail.ru>2014-11-25 22:20:14 +0700
committerrxu <rxu@mail.ru>2015-07-07 22:30:20 +0700
commit1365519283d5574ea0668f25052f4fee960d27f4 (patch)
tree14c9dbe6b30c42cedb58bf01dbc8b20067d4f382 /phpBB/includes/functions_content.php
parentf81a2bc7c56cfcb57feaed293be87bbe640dfa5f (diff)
downloadforums-1365519283d5574ea0668f25052f4fee960d27f4.tar
forums-1365519283d5574ea0668f25052f4fee960d27f4.tar.gz
forums-1365519283d5574ea0668f25052f4fee960d27f4.tar.bz2
forums-1365519283d5574ea0668f25052f4fee960d27f4.tar.xz
forums-1365519283d5574ea0668f25052f4fee960d27f4.zip
[ticket/13377] Fix decoding for www type URLs in function decode_message()
PHPBB3-13377
Diffstat (limited to 'phpBB/includes/functions_content.php')
-rw-r--r--phpBB/includes/functions_content.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_content.php b/phpBB/includes/functions_content.php
index 5cebc54eb2..fd39c61b14 100644
--- a/phpBB/includes/functions_content.php
+++ b/phpBB/includes/functions_content.php
@@ -420,7 +420,7 @@ function decode_message(&$message, $bbcode_uid = '')
$message = str_replace($match, $replace, $message);
$match = get_preg_expression('bbcode_htm');
- $replace = array('\1', '\1', '\2', '\1', '', '');
+ $replace = array('\1', '\1', '\3', '\1', '', '');
$message = preg_replace($match, $replace, $message);
}