diff options
author | Cesar G <prototech91@gmail.com> | 2013-10-08 10:56:04 -0700 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2013-10-08 10:56:04 -0700 |
commit | 964f6fe89ad77251b8528ed634d140dc57fc5138 (patch) | |
tree | 6b95cc865e6d92169cbf92851f3e444d2a898dfd | |
parent | 1f748e5d47f92d90b1c3e52ab8c8bb67322fb190 (diff) | |
download | forums-964f6fe89ad77251b8528ed634d140dc57fc5138.tar forums-964f6fe89ad77251b8528ed634d140dc57fc5138.tar.gz forums-964f6fe89ad77251b8528ed634d140dc57fc5138.tar.bz2 forums-964f6fe89ad77251b8528ed634d140dc57fc5138.tar.xz forums-964f6fe89ad77251b8528ed634d140dc57fc5138.zip |
[ticket/11890] Fix untranslated string when deleting posts through MCP.
PHPBB3-11890
-rw-r--r-- | phpBB/includes/mcp/mcp_main.php | 2 |
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) { |