aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textformatter/s9e
diff options
context:
space:
mode:
authorJoshyPHP <s9e.dev@gmail.com>2017-03-15 02:36:20 +0100
committerJoshyPHP <s9e.dev@gmail.com>2017-03-15 02:36:20 +0100
commitd3eb85dd5d04463f78f77d371eddc89ac3985659 (patch)
treeb420895ca7a6b1ceab70c0cb40596b23dc0a37ad /phpBB/phpbb/textformatter/s9e
parent5d597787eb49e202eec198d6b6416fb69ef15e3e (diff)
downloadforums-d3eb85dd5d04463f78f77d371eddc89ac3985659.tar
forums-d3eb85dd5d04463f78f77d371eddc89ac3985659.tar.gz
forums-d3eb85dd5d04463f78f77d371eddc89ac3985659.tar.bz2
forums-d3eb85dd5d04463f78f77d371eddc89ac3985659.tar.xz
forums-d3eb85dd5d04463f78f77d371eddc89ac3985659.zip
[ticket/15126] Disable HTML entities in quote helper
PHPBB3-15126
Diffstat (limited to 'phpBB/phpbb/textformatter/s9e')
-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;
}