X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fresponse%2Fimage%2Fclass_ImageResponse.php;h=21344c453136cc225a5bcfd3b40cae26cca70186;hp=dc6e5ad03e0f2a5debf4c3f7bf319d75983866f2;hb=49f84a522f0ccac3b70728cd41011a0be0eed8cf;hpb=3107989f93cfb5808ce9d75f1c7d2b7ee3d83d18 diff --git a/inc/classes/main/response/image/class_ImageResponse.php b/inc/classes/main/response/image/class_ImageResponse.php index dc6e5ad0..21344c45 100644 --- a/inc/classes/main/response/image/class_ImageResponse.php +++ b/inc/classes/main/response/image/class_ImageResponse.php @@ -122,7 +122,7 @@ class ImageResponse extends BaseResponse implements Responseable { return; // Now construct the full header - $cookieString = $cookieName . "=" . $cookieValue . "; "; + $cookieString = $cookieName . '=' . $cookieValue . '; '; $cookieString .= "expires=" . date("D, d-F-Y H:i:s", $expires) . " GMT"; // $cookieString .= "; path=".$path."; domain=".$domain; @@ -154,20 +154,20 @@ class ImageResponse extends BaseResponse implements Responseable { // Compile the URL $url = $this->getTemplateInstance()->compileRawCode($url); - // Do we have a "http" in front of the URL? - if (substr(strtolower($url), 0, 4) != "http") { + // Do we have a 'http' in front of the URL? + if (substr(strtolower($url), 0, 4) != 'http') { // Is there a / in front of the relative URL? - if (substr($url, 0, 1) == "/") $url = substr($url, 1); + if (substr($url, 0, 1) == '/') $url = substr($url, 1); // No, then extend it with our base URL - $url = $this->getConfigInstance()->readConfig('base_url') . "/" . $url; + $url = $this->getConfigInstance()->readConfig('base_url') . '/' . $url; } // END - if // Add redirect header - $this->addHeader("Location", $url); + $this->addHeader('Location', $url); // Set correct response status - $this->setResponseStatus("301 Moved Permanently"); + $this->setResponseStatus('301 Moved Permanently'); // Clear the body $this->setResponseBody('');