aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-04-09 17:05:53 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-04-09 17:05:53 +0000
commitc8b5adf506b3011c2083594f826f43df97b0f926 (patch)
treefd7cc4a2adb01e1856a686660e003b604f73c76b /phpBB/viewtopic.php
parent128be038dadf2e2d53e2284da0a5c222e39df568 (diff)
downloadforums-c8b5adf506b3011c2083594f826f43df97b0f926.tar
forums-c8b5adf506b3011c2083594f826f43df97b0f926.tar.gz
forums-c8b5adf506b3011c2083594f826f43df97b0f926.tar.bz2
forums-c8b5adf506b3011c2083594f826f43df97b0f926.tar.xz
forums-c8b5adf506b3011c2083594f826f43df97b0f926.zip
hopefully bringing back the unread link for pages being read but having unread posts on subsequent pages
git-svn-id: file:///svn/phpbb/trunk@7312 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php17
1 files changed, 13 insertions, 4 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index 76fb8f6d4e..8d4183b52e 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -1505,11 +1505,20 @@ else
}
// If there are absolutely no more unread posts in this forum and unread posts shown, we can savely show the #unread link
-if ($all_marked_read && $post_unread)
+if ($all_marked_read)
{
- $template->assign_vars(array(
- 'U_VIEW_UNREAD_POST' => '#unread',
- ));
+ if ($post_unread)
+ {
+ $template->assign_vars(array(
+ 'U_VIEW_UNREAD_POST' => '#unread',
+ ));
+ }
+ else if (isset($topic_tracking_info[$topic_id]) && $topic_data['topic_last_post_time'] > $topic_tracking_info[$topic_id])
+ {
+ $template->assign_vars(array(
+ 'U_VIEW_UNREAD_POST' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&amp;t=$topic_id&amp;view=unread") . '#unread',
+ ));
+ }
}
else if (!$all_marked_read)
{