Browse Source

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

Sergei Solovev 2 years ago
parent
commit
e4e03e21af
1 changed files with 5 additions and 1 deletions
  1. 5 1
      system/library/system.php

+ 5 - 1
system/library/system.php

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