mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Fix for display of newest image icon when one doesn't exist
git-svn-id: file:///svn/phpbb/trunk@1415 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
60ba5d46fb
commit
82215a4025
1 changed files with 1 additions and 1 deletions
|
@ -1080,7 +1080,7 @@ else if( $query_keywords != "" || $query_author != "" || $search_id )
|
||||||
{
|
{
|
||||||
if( isset($HTTP_COOKIE_VARS['phpbb2_' . $forum_id . '_' . $topic_id]) )
|
if( isset($HTTP_COOKIE_VARS['phpbb2_' . $forum_id . '_' . $topic_id]) )
|
||||||
{
|
{
|
||||||
if( $HTTP_COOKIE_VARS['phpbb2_' . $forum_id . '_' . $topic_id] < $searchset[$i]['post_time'] )
|
if( $HTTP_COOKIE_VARS['phpbb2_' . $forum_id . '_' . $topic_id] < $searchset[$i]['post_time'] && $searchset[$i]['post_time'] > $userdata['session_last_visit'] )
|
||||||
{
|
{
|
||||||
$folder_image = "<img src=\"$folder_new\" alt=\"" . $lang['New_posts'] . "\" />";
|
$folder_image = "<img src=\"$folder_new\" alt=\"" . $lang['New_posts'] . "\" />";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue