aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2013-10-08 23:36:28 +0200
committerAndreas Fischer <bantu@phpbb.com>2013-10-08 23:36:28 +0200
commitcba383d139a313d0742d06f6ee8bee91332a1c7b (patch)
treed40b10c8c12875216bef831937aa5292fc1f1b3b
parent5553046120a14ec6295f898d04d6f17ffadd092b (diff)
parent964f6fe89ad77251b8528ed634d140dc57fc5138 (diff)
downloadforums-cba383d139a313d0742d06f6ee8bee91332a1c7b.tar
forums-cba383d139a313d0742d06f6ee8bee91332a1c7b.tar.gz
forums-cba383d139a313d0742d06f6ee8bee91332a1c7b.tar.bz2
forums-cba383d139a313d0742d06f6ee8bee91332a1c7b.tar.xz
forums-cba383d139a313d0742d06f6ee8bee91332a1c7b.zip
Merge remote-tracking branch 'prototech/ticket/11890' into develop
* prototech/ticket/11890: [ticket/11890] Fix untranslated string when deleting posts through MCP.
-rw-r--r--phpBB/includes/mcp/mcp_main.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_main.php b/phpBB/includes/mcp/mcp_main.php
index 4f27d32a5a..7a22c31248 100644
--- a/phpBB/includes/mcp/mcp_main.php
+++ b/phpBB/includes/mcp/mcp_main.php
@@ -921,7 +921,7 @@ function mcp_delete_post($post_ids, $is_soft = false, $soft_delete_reason = '',
// None of the topics is really deleted, so a redirect won't hurt much.
$deleted_topics = 0;
- $success_msg = (sizeof($post_info) == 1) ? 'POST_DELETED_SUCCESS' : 'POSTS_DELETED_SUCCESS';
+ $success_msg = (sizeof($post_info) == 1) ? $user->lang['POST_DELETED_SUCCESS'] : $user->lang['POSTS_DELETED_SUCCESS'];
foreach ($approve_log as $row)
{