add that the session cookie is site global

This commit is contained in:
2025-07-19 16:44:34 +02:00
parent 2178435b65
commit 3fa057f084
+2 -2
View File
@@ -56,7 +56,7 @@ class furatalogSessions {
} }
private function saveCookie() { private function saveCookie() {
setcookie("_cookieKey", $this->cookieKey, time() + $this->cookie_duration); setcookie("_cookieKey", $this->cookieKey, time() + $this->cookie_duration, "/");
} }
private function connectDb() { private function connectDb() {
@@ -87,7 +87,7 @@ class furatalogSessions {
} }
private function deleteCookie() { private function deleteCookie() {
setcookie("_cookieKey", "", time()-3600); setcookie("_cookieKey", "", time()-3600, "/");
} }
private function deleteData($cookieKey) { private function deleteData($cookieKey) {