- Compatibility
- not tested for compatibility
- Database changes
- not required
- Additional requirements
- модификация отключения учета сообщений в форумах (флуд-форумы)
- Author
- Gemini_13
- Public domain
- no
Описание: дополнение к модификации отключения учета сообщений в форумах (флуд-форумы). Вычет флуд-сообщений с общей статистики.
- Installation instructions
- PHP:
# ---- [ Открыть ] ------------------- includes/datastore/build_stats.php # ---- [ Найти ] ------------------- // post/topic count $row = DB()->fetch_row("SELECT SUM(forum_topics) AS topiccount, SUM(forum_posts) AS postcount FROM ". BB_FORUMS); # ---- [ Заменить на ] ------------------- // post/topic count $row = DB()->fetch_row("SELECT SUM(forum_topics) AS topiccount, SUM(forum_posts) AS postcount FROM ". BB_FORUMS ." WHERE forum_postcount = 1"); # ---- [ Конец ] -------------------