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 /phpBB/includes | |
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 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions.php | 1 | ||||
-rw-r--r-- | phpBB/includes/functions_content.php | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index d984f41b08..8d727fb414 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2745,6 +2745,7 @@ function get_preg_expression($mode) return array( '#<!\-\- e \-\-><a href="mailto:(.*?)">.*?</a><!\-\- e \-\->#', '#<!\-\- l \-\-><a (?:class="[\w-]+" )?href="(.*?)(?:(&|\?)sid=[0-9a-f]{32})?">.*?</a><!\-\- l \-\->#', + '#<!\-\- ([mw]) \-\-><a (?:class="[\w-]+" )?href="http://(.*?)">\2</a><!\-\- \1 \-\->#', '#<!\-\- ([mw]) \-\-><a (?:class="[\w-]+" )?href="(.*?)">.*?</a><!\-\- \1 \-\->#', '#<!\-\- s(.*?) \-\-><img src="\{SMILIES_PATH\}\/.*? \/><!\-\- s\1 \-\->#', '#<!\-\- .*? \-\->#s', 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); } |