mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 05:38:52 +00:00
[feature/prune-users] Use empty for checking array size.
PHPBB3-9622
This commit is contained in:
parent
6151f46abe
commit
b76454dd83
1 changed files with 1 additions and 1 deletions
|
@ -357,7 +357,7 @@ function user_delete($mode, $user_ids, $retain_username = true)
|
||||||
}
|
}
|
||||||
$db->sql_freeresult($result);
|
$db->sql_freeresult($result);
|
||||||
|
|
||||||
if (!$user_rows)
|
if (empty($user_rows))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue