All empty double-quoted strings replaced with single-quotes
[core.git] / inc / classes / main / response / image / class_ImageResponse.php
index 870ce11f4b1b764848d85f1190d93fdc498d904c..dc6e5ad03e0f2a5debf4c3f7bf319d75983866f2 100644 (file)
@@ -170,7 +170,7 @@ class ImageResponse extends BaseResponse implements Responseable {
                $this->setResponseStatus("301 Moved Permanently");
 
                // Clear the body
-               $this->setResponseBody("");
+               $this->setResponseBody('');
 
                // Flush the result
                $this->flushBuffer();
@@ -213,7 +213,7 @@ class ImageResponse 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]);