mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00: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:
parent
f65556e6de
commit
e23868f3e2
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue