mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 06:38:52 +00:00
[ticket/11890] Fix untranslated string when deleting posts through MCP.
PHPBB3-11890
This commit is contained in:
parent
1f748e5d47
commit
964f6fe89a
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue