X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fresponse%2Fclass_HttpResponse.php;h=b3cbd0bdc3b92fff5e4c306bcab1eba5b58f16f6;hp=3fc5d2db1943c62b56ad4a209604804ab03cefd5;hb=9327c11e14407cce78208de01b5cdd2de87e13a3;hpb=8f6f9ab77c4c9820656ffa8ecd01bc3e68f1ca95 diff --git a/inc/classes/main/response/class_HttpResponse.php b/inc/classes/main/response/class_HttpResponse.php index 3fc5d2d..b3cbd0b 100644 --- a/inc/classes/main/response/class_HttpResponse.php +++ b/inc/classes/main/response/class_HttpResponse.php @@ -271,15 +271,15 @@ class HttpResponse extends BaseFrameworkSystem implements Responseable { $domain = $this->getConfigInstance()->readConfig('cookie_domain'); setcookie($cookieName, $cookieValue, $expires); - // TODO Why are these parameters conflicting? + // @TODO Why are these parameters conflicting? //, $path, $domain, (isset($_SERVER['HTTPS'])) return; - // TODO This will send only one cookie out, the first one. + // @TODO This will send only one cookie out, the first one. // Now construct the full header $cookieString = $cookieName . "=" . $cookieValue . "; "; $cookieString .= "expires=" . date("D, d-F-Y H:i:s", $expires) . " GMT"; - // TODO Why are these parameters conflicting? + // @TODO Why are these parameters conflicting? // $cookieString .= "; path=".$path."; domain=".$domain; // Set the cookie as a header