diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-02-27 19:13:31 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-02-27 19:13:31 +0100 |
commit | 5924bc1d027b427e4bc5df78bbac617e006d3633 (patch) | |
tree | 2f4a75c6844db726aeedcbff83fe84d36f4412d9 /phpBB/index.php | |
parent | c9b36c5a2e8466f88aa42d0e6736a461db356628 (diff) | |
download | forums-5924bc1d027b427e4bc5df78bbac617e006d3633.tar forums-5924bc1d027b427e4bc5df78bbac617e006d3633.tar.gz forums-5924bc1d027b427e4bc5df78bbac617e006d3633.tar.bz2 forums-5924bc1d027b427e4bc5df78bbac617e006d3633.tar.xz forums-5924bc1d027b427e4bc5df78bbac617e006d3633.zip |
[ticket/10672] Fix total post count language string in statistics and feed
PHPBB3-10672
Diffstat (limited to 'phpBB/index.php')
-rw-r--r-- | phpBB/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/index.php b/phpBB/index.php index 5f2254ac7f..f1243bb336 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -114,7 +114,7 @@ if ($config['load_birthdays'] && $config['allow_birthdays'] && $auth->acl_gets(' // Assign index specific vars $template->assign_vars(array( - 'TOTAL_POSTS' => $user->lang('TOTAL_POSTS', (int) $config['num_posts']), + 'TOTAL_POSTS' => $user->lang('TOTAL_POSTS_COUNT', (int) $config['num_posts']), 'TOTAL_TOPICS' => $user->lang('TOTAL_TOPICS', (int) $config['num_topics']), 'TOTAL_USERS' => $user->lang('TOTAL_USERS', (int) $config['num_users']), 'NEWEST_USER' => $user->lang('NEWEST_USER', get_username_string('full', $config['newest_user_id'], $config['newest_username'], $config['newest_user_colour'])), |