]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/main/response/class_HttpResponse.php
ToDo tags now all lower-case
[shipsimu.git] / inc / classes / main / response / class_HttpResponse.php
index 7e78b4378e05d22e1aa1185020845248ff0a0e5e..deff1a80269d682542218947759ef73b35c23cdb 100644 (file)
@@ -256,7 +256,7 @@ class HttpResponse extends BaseFrameworkSystem implements Responseable {
 
                // Shall we encrypt the cookie?
                if ($encrypted === true) {
-                       /* @TODO Encryption of cookie data not yet supported */
+                       /* @todo Encryption of cookie data not yet supported */
                } // END - if
 
                // For slow browsers set the cookie array element first
@@ -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