No topic icon present fix. (max() [function.max]: Array must contain atleast one element)

This commit is contained in:
Kevin
2008-08-18 16:38:47 +00:00
parent 8110d47f00
commit 9e0afb3a25

View File

@@ -353,7 +353,7 @@ function phpbb_fetch_posts($forum_from, $permissions, $number_of_posts, $text_le
$i++;
}
$posts['topic_icons'] = ( max($topic_icons) > 0 && $have_icons ) ? true : false;
$posts['topic_icons'] = ( (!empty($topic_icons)) && $have_icons ) ? true : false;
$posts['topic_count'] = $i;