aboutsummaryrefslogtreecommitdiffstats
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
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
-rwxr-xr-xphpBB/includes/mcp/mcp_reports.php4
-rw-r--r--phpBB/language/en/mcp.php1
2 files changed, 4 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';
diff --git a/phpBB/language/en/mcp.php b/phpBB/language/en/mcp.php
index 47cd8ed20a..9d3d34c13b 100644
--- a/phpBB/language/en/mcp.php
+++ b/phpBB/language/en/mcp.php
@@ -209,6 +209,7 @@ $lang = array_merge($lang, array(
'NO_POST_REPORT' => 'This post was not reported.',
'NO_POST_SELECTED' => 'You must select at least one post to perform this action',
'NO_REASON_DISAPPROVAL' => 'Please give an appropiate reason for disapproval',
+ 'NO_REPORTS' => 'No reports',
'NO_TOPIC_ICON' => 'None',
'NO_TOPIC_SELECTED' => 'You must select at least one topic to perform this action',