1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 09:16:55 +02:00

Merge pull request #5890 from mrgoldy/ticket/15979

[ticket/15979] Fix restoring/deleting when editing soft-deleted post
This commit is contained in:
Marc Alexander
2020-03-16 16:34:12 +01:00
2 changed files with 5 additions and 5 deletions

View File

@@ -2819,7 +2819,7 @@ function phpbb_handle_post_delete($forum_id, $topic_id, $post_id, &$post_data, $
$s_hidden_fields['delete_permanent'] = '1';
}
confirm_box(false, $l_confirm, build_hidden_fields($s_hidden_fields), 'confirm_delete_body.html');
confirm_box(false, [$l_confirm, 1], build_hidden_fields($s_hidden_fields), 'confirm_delete_body.html');
}
}