aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorOliver Schramm <oliver.schramm97@gmail.com>2018-10-01 17:07:28 +0200
committerOliver Schramm <oliver.schramm97@gmail.com>2018-10-01 17:07:28 +0200
commit0bb87b2de1ce127e5766f8c5a34ae9135ac58913 (patch)
tree6f5c48763b177bcc7cf92a62c4705d44003f0195 /phpBB/viewtopic.php
parent001f32da95d4f8697ccc9a6107afc8dc68cbe48e (diff)
downloadforums-0bb87b2de1ce127e5766f8c5a34ae9135ac58913.tar
forums-0bb87b2de1ce127e5766f8c5a34ae9135ac58913.tar.gz
forums-0bb87b2de1ce127e5766f8c5a34ae9135ac58913.tar.bz2
forums-0bb87b2de1ce127e5766f8c5a34ae9135ac58913.tar.xz
forums-0bb87b2de1ce127e5766f8c5a34ae9135ac58913.zip
[ticket/12430] Remove hilit param from topic title link
PHPBB3-12430
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index 79852330d9..dfec925a67 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -780,7 +780,7 @@ $template->assign_vars(array(
'U_TOPIC' => "{$server_path}viewtopic.$phpEx?f=$forum_id&amp;t=$topic_id",
'U_FORUM' => $server_path,
- 'U_VIEW_TOPIC' => $viewtopic_url,
+ 'U_VIEW_TOPIC' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&amp;t=$topic_id" . (($start == 0) ? '' : "&amp;start=$start") . (strlen($u_sort_param) ? "&amp;$u_sort_param" : '')),
'U_CANONICAL' => generate_board_url() . '/' . append_sid("viewtopic.$phpEx", "t=$topic_id" . (($start) ? "&amp;start=$start" : ''), true, ''),
'U_VIEW_FORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $forum_id),
'U_VIEW_OLDER_TOPIC' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&amp;t=$topic_id&amp;view=previous"),