aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorDominik Dröscher <dhn2@users.sourceforge.net>2007-01-09 20:46:57 +0000
committerDominik Dröscher <dhn2@users.sourceforge.net>2007-01-09 20:46:57 +0000
commitccaae47b6ce6a3c0b9e740da863b7e159eccf686 (patch)
treee3b88e42bb349a3b43ae0897da6107f78de94b42 /phpBB/includes
parent289998c5e73199c8cef21748bb9750e137167947 (diff)
downloadforums-ccaae47b6ce6a3c0b9e740da863b7e159eccf686.tar
forums-ccaae47b6ce6a3c0b9e740da863b7e159eccf686.tar.gz
forums-ccaae47b6ce6a3c0b9e740da863b7e159eccf686.tar.bz2
forums-ccaae47b6ce6a3c0b9e740da863b7e159eccf686.tar.xz
forums-ccaae47b6ce6a3c0b9e740da863b7e159eccf686.zip
Just some minor thing I need
git-svn-id: file:///svn/phpbb/trunk@6868 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rwxr-xr-xphpBB/includes/mcp/mcp_reports.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_reports.php b/phpBB/includes/mcp/mcp_reports.php
index 28d065a4db..8484b8fb70 100755
--- a/phpBB/includes/mcp/mcp_reports.php
+++ b/phpBB/includes/mcp/mcp_reports.php
@@ -337,7 +337,9 @@ class mcp_reports
'PAGINATION' => generate_pagination($this->u_action . "&amp;f=$forum_id&amp;t=$topic_id", $total, $config['topics_per_page'], $start),
'PAGE_NUMBER' => on_page($total, $config['topics_per_page'], $start),
'TOPIC_ID' => $topic_id,
- 'TOTAL' => $total)
+ 'TOTAL' => $total,
+ 'TOTAL_REPORTS' => ($total == 1) ? $user->lang['LIST_REPORT'] : sprintf($user->lang['LIST_REPORTS'], $total),
+ )
);
$this->tpl_name = 'mcp_reports';