mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 13:30:25 +02:00
[feature/prune-users] Fixed user id check in undelivered users loop.
There is now $user_ids instead of one $user_id. PHPBB3-9622
This commit is contained in:
@@ -611,7 +611,7 @@ function user_delete($mode, $user_ids, $retain_username = true)
|
||||
|
||||
foreach ($undelivered_user as $_user_id => $ary)
|
||||
{
|
||||
if ($_user_id == $user_id)
|
||||
if (in_array($_user_id, $user_ids))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
Reference in New Issue
Block a user