Compare commits

...

2 Commits

Author SHA1 Message Date
1694a0f284 Merge branch 'master' of https://git.mcnd.ca/mcndave/storage 2024-04-17 23:35:29 +00:00
302b1cc8f6 - Fixed a typo 2023-10-30 15:27:49 +00:00

View File

@ -89,6 +89,8 @@ class Cookie {
list($hash, $value) = explode('|', $_COOKIE[$key], 2);
if (! $this->isSecure($hash, $value)) {
$this->delete($key);
throw new Exception\CookieInvalidSecureHashException("Invalid cookie hash value given.");
}