diff options
author | Nils Adermann <naderman@naderman.de> | 2009-07-26 20:22:41 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2009-07-26 20:22:41 +0000 |
commit | e7b3a68259b37c497037a1a2a0c2c7e3f862623f (patch) | |
tree | 8baac6c6b912284e2c477ef0d85802c080db455a /phpBB/includes/mcp/mcp_front.php | |
parent | 18ce333e31ae5bd1df619b9d553a77050b693eb0 (diff) | |
download | forums-e7b3a68259b37c497037a1a2a0c2c7e3f862623f.tar forums-e7b3a68259b37c497037a1a2a0c2c7e3f862623f.tar.gz forums-e7b3a68259b37c497037a1a2a0c2c7e3f862623f.tar.bz2 forums-e7b3a68259b37c497037a1a2a0c2c7e3f862623f.tar.xz forums-e7b3a68259b37c497037a1a2a0c2c7e3f862623f.zip |
geez, maybe we should stop displaying text and this would become easier
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9864 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/mcp/mcp_front.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_front.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/mcp/mcp_front.php b/phpBB/includes/mcp/mcp_front.php index b844796955..3f73bde7d8 100644 --- a/phpBB/includes/mcp/mcp_front.php +++ b/phpBB/includes/mcp/mcp_front.php @@ -322,14 +322,14 @@ function mcp_front_view($id, $mode, $action) if ($total == 0) { $template->assign_vars(array( - 'L_REPORTS_TOTAL' => $user->lang['PM_REPORTS_ZERO_TOTAL'], + 'L_PM_REPORTS_TOTAL' => $user->lang['PM_REPORTS_ZERO_TOTAL'], 'S_HAS_PM_REPORTS' => false) ); } else { $template->assign_vars(array( - 'L_REPORTS_TOTAL' => ($total == 1) ? $user->lang['PM_REPORT_TOTAL'] : sprintf($user->lang['PM_REPORTS_TOTAL'], $total), + 'L_PM_REPORTS_TOTAL' => ($total == 1) ? $user->lang['PM_REPORT_TOTAL'] : sprintf($user->lang['PM_REPORTS_TOTAL'], $total), 'S_HAS_PM_REPORTS' => true) ); } |