mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-19 17:58:51 +00:00
Merge branch '3.1.x'
* 3.1.x: [ticket/13711] Notifications are sent to inactive users
This commit is contained in:
commit
452c8bef28
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ abstract class messenger_base extends \phpbb\notification\method\base
|
||||||
|
|
||||||
$user = $this->user_loader->get_user($notification->user_id);
|
$user = $this->user_loader->get_user($notification->user_id);
|
||||||
|
|
||||||
if ($user['user_type'] == USER_IGNORE || in_array($notification->user_id, $banned_users))
|
if ($user['user_type'] == USER_IGNORE || ($user['user_type'] == USER_INACTIVE && $user['user_inactive_reason'] == INACTIVE_MANUAL) || in_array($notification->user_id, $banned_users))
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue