Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
newest version. CRITICAL - 2019-12-10 19:17:06 --> Argument 2 passed to dot_array_search() must be of the type array, null given, called in /home/zdamy/site/system/Session/Session.php on line 500 #0 /home/zdamy/site/system/Session/Session.php(500): dot_array_search('ausItem', NULL) codeigniter4#1 /home/zdamy/site/system/Common.php(347): CodeIgniter\Session\Session->get('ausItem') codeigniter4#2 /home/zdamy/site/app/Models/AdminUserModel.php(87): session('ausItem') BTW/ I am not sure if that method should not look like: ``` public function get(string $key = null) { if (! empty($key)) { if(! is_null($value = dot_array_search($key, $_SESSION??[]))) { return $value; } return null; } elseif (empty($_SESSION)) { return []; } $userdata = []; $_exclude = array_merge( ['__ci_vars'], $this->getFlashKeys(), $this->getTempKeys() ); $keys = array_keys($_SESSION); foreach ($keys as $key) { if (! in_array($key, $_exclude, true)) { $userdata[$key] = $_SESSION[$key]; } } return $userdata; } ```
- Loading branch information