MyBB Community Forums

Full Version: Posts on private forums
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to show the amount of posts a private (passworded) forum has inside it the same way normal forums show it?
bump bump
bump bump
Open inc/functions_forumlist.php

Find
$posts = "-";
$threads = "-";

Replace By
$posts = my_number_format($forum['posts']);
$threads = my_number_format($forum['threads']);
thanks!