mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Various changes to accompany session updates ... MSSQL users should be prepared to alter or remove the session_last_visit field or face potential problems
git-svn-id: file:///svn/phpbb/trunk@1594 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
2518d92042
commit
219b7c152c
2 changed files with 2 additions and 2 deletions
|
@ -1165,7 +1165,7 @@ else if( $query_keywords != "" || $query_author != "" || $search_id )
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
else if( $topic_rowset[$i]['post_time'] > $userdata['session_last_visit'] )
|
else if( $topic_rowset[$i]['post_time'] > $userdata['user_lastvisit'] )
|
||||||
{
|
{
|
||||||
$folder_image = "<img src=\"$folder_new\" alt=\"" . $lang['New_posts'] . "\" title=\"" . $lang['New_posts'] . "\" />";
|
$folder_image = "<img src=\"$folder_new\" alt=\"" . $lang['New_posts'] . "\" title=\"" . $lang['New_posts'] . "\" />";
|
||||||
|
|
||||||
|
|
|
@ -560,7 +560,7 @@ if( $total_topics )
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
else if( $topic_rowset[$i]['post_time'] > $userdata['session_last_visit'] )
|
else if( $topic_rowset[$i]['post_time'] > $userdata['user_lastvisit'] )
|
||||||
{
|
{
|
||||||
$folder_image = "<img src=\"$folder_new\" alt=\"" . $lang['New_posts'] . "\" title=\"" . $lang['New_posts'] . "\" />";
|
$folder_image = "<img src=\"$folder_new\" alt=\"" . $lang['New_posts'] . "\" title=\"" . $lang['New_posts'] . "\" />";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue