diff --git a/public/index.php b/public/index.php index 54717d3..fbcfbe2 100644 --- a/public/index.php +++ b/public/index.php @@ -216,7 +216,7 @@ public function authenticate($pwd = '') { }; $encrypter = new IlluminateEncrypter($key, 'AES-256-CBC'); $decrypted_cookie = $encrypter->decrypt($session, false); - $store_id = CookieValuePrefix::validate($session_name, $decrypted_cookie, $key); + $store_id = CookieValuePrefix::validate($session_name, $decrypted_cookie, [$key]); $session_handler = new FileSessionHandler( new Filesystem(), __DIR__ . '/../storage/framework/sessions',