mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-19 01:38:54 +00:00
Merge pull request #4548 from nicebb/ticket/13757
[ticket/13757] Prevents the count of unread PMs from being negative
This commit is contained in:
commit
365489a317
1 changed files with 6 additions and 0 deletions
|
@ -892,6 +892,12 @@ function update_unread_status($unread, $msg_id, $user_id, $folder_id)
|
||||||
AND folder_id = $folder_id";
|
AND folder_id = $folder_id";
|
||||||
$db->sql_query($sql);
|
$db->sql_query($sql);
|
||||||
|
|
||||||
|
// If the message is already marked as read, we just skip the rest to avoid negative PM count
|
||||||
|
if (!$db->sql_affectedrows())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$sql = 'UPDATE ' . USERS_TABLE . "
|
$sql = 'UPDATE ' . USERS_TABLE . "
|
||||||
SET user_unread_privmsg = user_unread_privmsg - 1
|
SET user_unread_privmsg = user_unread_privmsg - 1
|
||||||
WHERE user_id = $user_id";
|
WHERE user_id = $user_id";
|
||||||
|
|
Loading…
Add table
Reference in a new issue