Skip to content

Commit

Permalink
update current symbiota cookie validate method
Browse files Browse the repository at this point in the history
  • Loading branch information
MuchQuak committed Sep 25, 2024
1 parent 624c55e commit a9c1619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit a9c1619

Please sign in to comment.