Code: Alles auswählen
if( $topic_rowset[$i]['topic_type'] == POST_ANNOUNCE )
{
$folder = $images['folder_announce'];
else if( $topic_rowset[$i]['topic_type'] == POST_GLOBAL_TOPIC && $topic_rowset[$i]['topic_status'] != TOPIC_LOCKED )
{
$folder = $images['folder_global_topic'];
$folder_new = $images['folder_global_topic_new'];
} $folder_new = $images['folder_announce_new'];
}
sollte wahrscheinlich mal so aussehen:
Code: Alles auswählen
if( $topic_rowset[$i]['topic_type'] == POST_ANNOUNCE )
{
$folder = $images['folder_announce'];
$folder_new = $images['folder_announce_new'];
}
else if( $topic_rowset[$i]['topic_type'] == POST_GLOBAL_TOPIC && $topic_rowset[$i]['topic_status'] != TOPIC_LOCKED )
{
$folder = $images['folder_global_topic'];
$folder_new = $images['folder_global_topic_new'];
}