[ticket/17345] Original time of last post when bump topic

The original time of last post should not be updated when bump topic

https://tracker.phpbb.com/browse/PHPBB-17345
This commit is contained in:
phpBB TR 2024-06-19 02:38:51 +03:00 committed by GitHub
parent 44396162ca
commit 1332d93a13
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2673,13 +2673,6 @@ function phpbb_bump_topic($forum_id, $topic_id, $post_data, $bump_time = false)
// Begin bumping
$db->sql_transaction('begin');
// Update the topic's last post post_time
$sql = 'UPDATE ' . POSTS_TABLE . "
SET post_time = $bump_time
WHERE post_id = {$post_data['topic_last_post_id']}
AND topic_id = $topic_id";
$db->sql_query($sql);
// Sync the topic's last post time, the rest of the topic's last post data isn't changed
$sql = 'UPDATE ' . TOPICS_TABLE . "
SET topic_last_post_time = $bump_time,