aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/feed.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-02-28 22:27:16 +0100
committerAndreas Fischer <bantu@phpbb.com>2012-02-28 22:27:16 +0100
commit5ee1bcd2e4d86b1b38947b25237a2abdf5c81d28 (patch)
tree22d0489be9a0d18b3214f8b79e8bac658d37fc64 /phpBB/feed.php
parent50d234b9af81dadfe64efb826b34c5c7dd45b4f2 (diff)
parent5924bc1d027b427e4bc5df78bbac617e006d3633 (diff)
downloadforums-5ee1bcd2e4d86b1b38947b25237a2abdf5c81d28.tar
forums-5ee1bcd2e4d86b1b38947b25237a2abdf5c81d28.tar.gz
forums-5ee1bcd2e4d86b1b38947b25237a2abdf5c81d28.tar.bz2
forums-5ee1bcd2e4d86b1b38947b25237a2abdf5c81d28.tar.xz
forums-5ee1bcd2e4d86b1b38947b25237a2abdf5c81d28.zip
Merge remote-tracking branch 'nickvergessen/ticket/10672' into develop
* nickvergessen/ticket/10672: [ticket/10672] Fix total post count language string in statistics and feed
Diffstat (limited to 'phpBB/feed.php')
-rw-r--r--phpBB/feed.php2
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']);
}
}
}