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/feed.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/feed.php')
| -rw-r--r-- | phpBB/feed.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/feed.php b/phpBB/feed.php index 00247c1958..fcf42a83ae 100644 --- a/phpBB/feed.php +++ b/phpBB/feed.php @@ -1106,7 +1106,7 @@ class phpbb_feed_forums extends phpbb_feed_base global $user; $item_row['statistics'] = $user->lang('TOTAL_TOPICS', (int) $row['forum_topics']) - . ' ' . $this->separator_stats . ' ' . $user->lang('TOTAL_POSTS_OTHER', (int) $row['forum_posts']); + . ' ' . $this->separator_stats . ' ' . $user->lang('TOTAL_POSTS_COUNT', (int) $row['forum_posts']); } } } |
