From 25635616637bc1b12ff3a1fbe315732f4c022871 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Tue, 15 Aug 2023 11:07:10 +0200 Subject: [PATCH] [ticket/17029] Treat deleting post as last post when id is bigger PHPBB3-17029 --- phpBB/includes/functions_posting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index f296606aeb..2c64685d61 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -1345,7 +1345,7 @@ function delete_post($forum_id, $topic_id, $post_id, &$data, $is_soft = false, $ { $post_mode = 'delete_first_post'; } - else if ($data['topic_last_post_id'] == $post_id) + else if ($data['topic_last_post_id'] <= $post_id) { $post_mode = 'delete_last_post'; }