Я использую мод "recent_topics"
постит последние активные темы на главную страницу сайта.
так вот он, вываливает и то, что не модерировано. а это не бест

/
- Код: выделить все
/ Fetching topics of public forums
$sql = 'SELECT t.topic_id, t.forum_id, t.topic_title, t.topic_last_post_id, t.topic_first_post_id, t.topic_replies, t.topic_replies_real, p.post_id, p.post_text, p.bbcode_uid, p.bbcode_bitfield, p.post_attachment, p.post_approved
FROM ' . TOPICS_TABLE . ' AS t, ' . POSTS_TABLE . ' AS p, ' . FORUMS_TABLE . " AS f
WHERE t.forum_id = f.forum_id
$sql_ignore_forums
$sql_only_forums
AND p.post_id = t.topic_first_post_id
AND t.topic_moved_id = 0
AND СЮДА ПРОПИСАТЬ УСЛОВИЕ МОДЕРАЦИИ
ORDER BY t.topic_last_post_id DESC LIMIT $cfg_nm_topics";
должно ж быть какое то поле значение которого нужно проверить в последнем 'AND' ?