mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
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
This commit is contained in:
parent
128be038da
commit
c8b5adf506
1 changed files with 13 additions and 4 deletions
|
@ -1505,12 +1505,21 @@ else
|
||||||
}
|
}
|
||||||
|
|
||||||
// If there are absolutely no more unread posts in this forum and unread posts shown, we can savely show the #unread link
|
// 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)
|
||||||
|
{
|
||||||
|
if ($post_unread)
|
||||||
{
|
{
|
||||||
$template->assign_vars(array(
|
$template->assign_vars(array(
|
||||||
'U_VIEW_UNREAD_POST' => '#unread',
|
'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&t=$topic_id&view=unread") . '#unread',
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
else if (!$all_marked_read)
|
else if (!$all_marked_read)
|
||||||
{
|
{
|
||||||
$last_page = ((floor($start / $config['posts_per_page']) + 1) == max(ceil($total_posts / $config['posts_per_page']), 1)) ? true : false;
|
$last_page = ((floor($start / $config['posts_per_page']) + 1) == max(ceil($total_posts / $config['posts_per_page']), 1)) ? true : false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue