PHP Deprecated: Automatic conversion of false to array is deprecated in C:\MyPrograms\OSPanel\domains\enginegp.local\system\library\system.php on line 60

This commit is contained in:
Sergei Solovev 2023-03-13 01:00:08 +03:00
parent 66c7618230
commit e4e03e21af

View file

@ -50,10 +50,14 @@
return NULL;
}
public static function users($users = [], $user = false, $authkey = false, $del = false)
public static function users($users, $user, $authkey, $del = false)
{
global $mcache;
if (!is_array($users) || empty($users)) {
$users = [];
}
if($del)
unset($users[md5($user['login'].$user['authkey'].$user['passwd'])]);
else