All empty double-quoted strings replaced with single-quotes
[core.git] / inc / classes / main / response / http / class_HttpResponse.php
index 3cde5516b6f19ae81034e4536bdfde9b020bd2d9..19a453bb52348741e67856402edc84b6dedc2b49 100644 (file)
@@ -156,7 +156,7 @@ class HttpResponse extends BaseResponse implements Responseable {
                $this->setResponseStatus("301 Moved Permanently");
 
                // Clear the body
-               $this->setResponseBody("");
+               $this->setResponseBody('');
 
                // Flush the result
                $this->flushBuffer();
@@ -175,7 +175,7 @@ class HttpResponse extends BaseResponse implements Responseable {
                // Is the cookie there?
                if (isset($_COOKIE[$cookieName])) {
                        // Then expire it with 20 minutes past
-                       $this->addCookie($cookieName, "", false, (time() - 1200));
+                       $this->addCookie($cookieName, '', false, (time() - 1200));
 
                        // Remove it from array
                        unset($_COOKIE[$cookieName]);