|
From: Paul S. O. <ps...@us...> - 2001-12-17 03:15:12
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv20270
Modified Files:
viewtopic.php
Log Message:
Another lastvisit name change missed
Index: viewtopic.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/viewtopic.php,v
retrieving revision 1.153
retrieving revision 1.154
diff -C2 -r1.153 -r1.154
*** viewtopic.php 2001/12/16 13:41:37 1.153
--- viewtopic.php 2001/12/17 03:15:09 1.154
***************
*** 194,198 ****
$is_auth = auth(AUTH_ALL, $forum_id, $userdata, $forum_row);
! if(!$is_auth['auth_view'] || !$is_auth['auth_read'])
{
//
--- 194,198 ----
$is_auth = auth(AUTH_ALL, $forum_id, $userdata, $forum_row);
! if( !$is_auth['auth_view'] || !$is_auth['auth_read'] )
{
//
***************
*** 773,777 ****
// Define the little post icon
//
! if( $postrow[$i]['post_time'] > $userdata['session_last_visit'] && $postrow[$i]['post_time'] > $topic_last_read )
{
$mini_post_img = '<img src="' . $images['icon_minipost_new'] . '" alt="' . $lang['New_post'] . '" title="' . $lang['New_post'] . '" border="0" />';
--- 773,777 ----
// Define the little post icon
//
! if( $userdata['session_logged_in'] && $postrow[$i]['post_time'] > $userdata['user_lastvisit'] && $postrow[$i]['post_time'] > $topic_last_read )
{
$mini_post_img = '<img src="' . $images['icon_minipost_new'] . '" alt="' . $lang['New_post'] . '" title="' . $lang['New_post'] . '" border="0" />';
|