From a711e6d677257b64574fb5c377dfbde7127da3c3 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Mon, 1 Oct 2001 23:22:18 +0000 Subject: Changes related to private messaging + some bug fixes git-svn-id: file:///svn/phpbb/trunk@1111 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/viewtopic.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/viewtopic.php') diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 9d60156a07..494f018e41 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -428,7 +428,7 @@ $template->set_filenames(array( "jumpbox" => "jumpbox.tpl") ); -$jumpbox = make_jumpbox(); +$jumpbox = make_jumpbox($forum_id); $template->assign_vars(array( "L_GO" => $lang['Go'], "L_JUMP_TO" => $lang['Jump_to'], @@ -674,7 +674,7 @@ for($i = 0; $i < $total_posts; $i++) // // Define the little post icon // - if( $postrow[$i]['post_time'] > $userdata['session_last_visit'] ) + if( $postrow[$i]['post_time'] > $userdata['session_last_visit'] && $postrow[$i]['post_time'] > $HTTP_COOKIE_VAR['phpbb2_' . $forum_id . '_' . $topic_id]) { $mini_post_img = '' . $lang['New_post'] . ''; } -- cgit v1.2.1