diff options
Diffstat (limited to 'phpBB/admin/index.php')
-rw-r--r-- | phpBB/admin/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/admin/index.php b/phpBB/admin/index.php index 25a8b95ce9..e8a6c1d134 100644 --- a/phpBB/admin/index.php +++ b/phpBB/admin/index.php @@ -174,8 +174,8 @@ elseif ( isset($_GET['pane']) && $_GET['pane'] == 'right' ) } // Get forum statistics - $total_posts = get_db_stat('postcount'); - $total_topics = get_db_stat('topiccount'); + $total_posts = $board_config['num_posts']; + $total_topics = $board_config['num_topics']; $total_users = $board_config['num_users']; $start_date = $user->format_date($board_config['board_startdate']); |