stanley-king пре 4 година
родитељ
комит
a39c2dc158
1 измењених фајлова са 3 додато и 0 уклоњено
  1. 3 0
      helper/http_header.php

+ 3 - 0
helper/http_header.php

@@ -146,6 +146,8 @@ class http_header
             $cookie .= self::COOKIE_MAX_AGE . $tsdelta;
         }
 
+        $cookie .= '; SameSite=Lax';
+
         if(!empty($path)) {
             $cookie .= self::COOKIE_PATH . $path;
         }
@@ -162,6 +164,7 @@ class http_header
             $cookie .= self::COOKIE_HTTPONLY . $httponly;
         }
 
+
         $this->mHeader->push($cookie);
 
         return true;