Quote:
Originally posted by organic-hosting
What about listing all forums except hidden (moderators) forum?
Can that be done by uncommenting the $whereforum line & excluding a certain froum?
|
Replace:
$allthreads=$DB_site->query("SELECT threadid,title FROM thread WHERE replycount='0' $whereforum ORDER BY dateline LIMIT $threadnum");
AS:
$allthreads=$DB_site->query("SELECT threadid,title FROM thread WHERE replycount='0' AND (forumid=X OR forumid=Y OR forumid=Z) ORDER BY dateline LIMIT $threadnum");
(Replace X,Y,Z and if you need to add more forums use "OR forumid=N" format)