Merge branch '3.2.x'

This commit is contained in:
Marc Alexander 2017-03-19 15:28:26 +01:00
commit 218466b40e
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

@ -39,8 +39,8 @@ class quote_helper
*/ */
public function __construct(\phpbb\user $user, $root_path, $php_ext) 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->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}'); $this->profile_url = append_sid($root_path . 'memberlist.' . $php_ext, 'mode=viewprofile&u={USER_ID}', false);
$this->user = $user; $this->user = $user;
} }