aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_content.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-03-13 14:48:21 +0100
committerMarc Alexander <admin@m-a-styles.de>2016-03-13 14:48:21 +0100
commit17b8e93a5350e297f9be0925120f0b6cf34f5ffe (patch)
tree48d26addd11f8c3f267e63580997ca7bf3370dea /phpBB/includes/functions_content.php
parentdad531e4b2c19dd22b8dd6a15e410e187a67fe46 (diff)
downloadforums-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 '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 cfa713daab..df4a51db98 100644
--- a/phpBB/includes/functions_content.php
+++ b/phpBB/includes/functions_content.php
@@ -469,7 +469,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', '\2', '\2', '\1', '', '');
$message = preg_replace($match, $replace, $message);
}