aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-03-19 15:28:22 +0100
committerMarc Alexander <admin@m-a-styles.de>2017-03-19 15:28:22 +0100
commit45ae23628e758ad4e06318a2191dd33f0427fbc1 (patch)
tree433475803ff48536ae34219696287d1e1106600b /phpBB/phpbb
parentd35262089de3ca14fd916fecfe59bef1d318a212 (diff)
parentd3eb85dd5d04463f78f77d371eddc89ac3985659 (diff)
downloadforums-45ae23628e758ad4e06318a2191dd33f0427fbc1.tar
forums-45ae23628e758ad4e06318a2191dd33f0427fbc1.tar.gz
forums-45ae23628e758ad4e06318a2191dd33f0427fbc1.tar.bz2
forums-45ae23628e758ad4e06318a2191dd33f0427fbc1.tar.xz
forums-45ae23628e758ad4e06318a2191dd33f0427fbc1.zip
Merge pull request #4742 from JoshyPHP/ticket/15126
[ticket/15126] Disable HTML entities in quote helper
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/textformatter/s9e/quote_helper.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/textformatter/s9e/quote_helper.php b/phpBB/phpbb/textformatter/s9e/quote_helper.php
index 24109ac8cc..86c33c7591 100644
--- a/phpBB/phpbb/textformatter/s9e/quote_helper.php
+++ b/phpBB/phpbb/textformatter/s9e/quote_helper.php
@@ -39,8 +39,8 @@ class quote_helper
*/
public function __construct(\phpbb\user $user, $root_path, $php_ext)
{
- $this->post_url = append_sid($root_path . 'viewtopic.' . $php_ext, 'p={POST_ID}#p{POST_ID}');
- $this->profile_url = append_sid($root_path . 'memberlist.' . $php_ext, 'mode=viewprofile&u={USER_ID}');
+ $this->post_url = append_sid($root_path . 'viewtopic.' . $php_ext, 'p={POST_ID}#p{POST_ID}', false);
+ $this->profile_url = append_sid($root_path . 'memberlist.' . $php_ext, 'mode=viewprofile&u={USER_ID}', false);
$this->user = $user;
}