From 169a9a560d52778adc8b63c2a31254965af6f342 Mon Sep 17 00:00:00 2001 From: Cesar G Date: Mon, 9 Jun 2014 13:54:43 -0700 Subject: [PATCH] [ticket/12667] Do not point viewtopic URL to unread post outside of view=unread PHPBB3-12667 --- phpBB/styles/prosilver/template/viewtopic_body.html | 4 +++- phpBB/styles/subsilver2/template/viewtopic_body.html | 5 ++++- phpBB/viewtopic.php | 1 + 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index fb0b9733e7..710b42b5e3 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -117,7 +117,9 @@ - + + data-url="{postrow.U_MINI_POST}"> +
diff --git a/phpBB/styles/subsilver2/template/viewtopic_body.html b/phpBB/styles/subsilver2/template/viewtopic_body.html index 8f83bfbea6..c69be83a1e 100644 --- a/phpBB/styles/subsilver2/template/viewtopic_body.html +++ b/phpBB/styles/subsilver2/template/viewtopic_body.html @@ -155,7 +155,10 @@ - + + data-url="{postrow.U_MINI_POST}"> + + diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 789d53c676..d13d4b444f 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -635,6 +635,7 @@ $template->assign_vars(array( 'L_RETURN_TO_FORUM' => $user->lang('RETURN_TO', $topic_data['forum_name']), 'S_VIEWTOPIC' => true, + 'S_UNREAD_VIEW' => $view == 'unread', 'S_DISPLAY_SEARCHBOX' => ($auth->acl_get('u_search') && $auth->acl_get('f_search', $forum_id) && $config['load_search']) ? true : false, 'S_SEARCHBOX_ACTION' => append_sid("{$phpbb_root_path}search.$phpEx"), 'S_SEARCH_LOCAL_HIDDEN_FIELDS' => build_hidden_fields($s_search_hidden_fields),