There is a did not document funktion.
find in the statistik.php
PHP Code:
//4 ist das interne Forum
$getbeitraege= $DB_site->query("
SELECT threadid, title, lastpost, postusername,lastposter,dateline
FROM " . TABLE_PREFIX . "thread
WHERE forumid NOT IN ('4')
ORDER BY lastpost
DESC LIMIT $limit
");
The number 4 in this part
WHERE forumid NOT IN ('4') is my intern Forum.
Change this Number with the Forum ID?s you don?t want to show
for example
WHERE forumid NOT IN ('4', '11', '22')
Sorry, but i have forgot this to explain in my instructions.
PcFreak