ich hab mir folgenden Mod angelacht und eingebaut.
Code: Alles auswählen
## MOD Title: Mini Forum Statistik im Index
## MOD Author: AWSW < > (AWSW) http://www.awsw.de

Bitte danke

Code: Alles auswählen
## MOD Title: Mini Forum Statistik im Index
## MOD Author: AWSW < > (AWSW) http://www.awsw.de
Code: Alles auswählen
$sql = "SELECT topic_id,topic_title,topic_replies
FROM " . TOPICS_TABLE . " t
LEFT JOIN " . FORUMS_TABLE . " f
ON t.forum_id=f.forum_id
WHERE f.auth_view < 2
ORDER BY topic_replies DESC
LIMIT 5";
Code: Alles auswählen
$sql = "SELECT topic_id,topic_title,topic_replies
FROM " . TOPICS_TABLE . " t
LEFT JOIN " . FORUMS_TABLE . " f
ON t.forum_id=f.forum_id
WHERE f.auth_view < 3
ORDER BY topic_replies DESC
LIMIT 5";