Ich misch das Thread hier mal auf!
Kriege so ein Hass gerade!
Ich kann nicht verstehen weshalv es bei mir nicht geht das in der lastforum Box die Icons nicht richtig ausgegeben werden!
Beim IlchbbForum geht es einwandfrei, man sieht ein Thread davor is diesen Icon
Dan liest man das Thread, geht wieder zurück auf die Homeseite und ruck zuck kommt das Icon
Bei meiner LastForum Box funktioniert es einfach nicht, ich habe &r , &row, ORD, ord, TOP, top irgendwie alles ausprobiert was im Forum Mod so abgefragt wird bei den Thredsicons!
Function in include/includes/func/forum.php
function forum_get_ordner ( $ftime, $id, $fid =0 ) {
if ( $ftime >= $_SESSION['lastlogin'] ) {
if ( $fid == 0 ) {
$anzOpenTopics = db_result(db_query("SELECT COUNT(*) FROM prefix_topics LEFT JOIN prefix_posts ON prefix_posts.id = prefix_topics.last_post_id WHERE prefix_topics.fid = ".$id." AND prefix_posts.time >= ".$_SESSION['lastlogin'] ),0);
if ( (($anzOpenTopics > 0 ) AND !isset($_SESSION['forumSEE'][$id]))
OR $anzOpenTopics > count($_SESSION['forumSEE'][$id])
OR max ( $_SESSION['forumSEE'][$id] ) <= ( $ftime - 4 )
) {
return ( 'nord' );
} else {
return ( 'ord' );
}
} else {
if ( isset ($_SESSION['forumSEE'][$fid][$id]) AND $ftime <= $_SESSION['forumSEE'][$fid][$id] ) {
return ( 'ord' );
} else {
return ( 'nord' );
}
}
} else {
return ('ord');
}
}
In der lastforum.php habe ich es so
$resultID = db_query($query);
while ($row = db_fetch_assoc($rowesultID)) {
$row['ORD'] = forum_get_ordner($row['time'],$row['id']);
echo'
<table width="100%" border="0" cellspacing="0" cellpadding="4" class="hintergrund">
<tr>
<td width="28" rowspan="4" align="center" valign="middle"><img src="include/images/forum/'.$row['ORD'].'.gif" border="0"></td>
</tr>
</table>
';
Was hab ich falsch? Ich verzweifle sowas von