From: Roland Häder Date: Tue, 28 Feb 2012 17:48:24 +0000 (+0000) Subject: Double->single quotes converted X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=7bcffaf69d46f44263cb79dc4b5d0054202197ea Double->single quotes converted --- diff --git a/inc/classes/main/response/class_BaseResponse.php b/inc/classes/main/response/class_BaseResponse.php index fbaa85a7..14c2117e 100644 --- a/inc/classes/main/response/class_BaseResponse.php +++ b/inc/classes/main/response/class_BaseResponse.php @@ -28,7 +28,7 @@ class BaseResponse extends BaseFrameworkSystem { /** * Response status */ - private $responseStatus = "200 OK"; + private $responseStatus = '200 OK'; /** * Array with all headers @@ -154,7 +154,7 @@ class BaseResponse extends BaseFrameworkSystem { throw new ResponseHeadersAlreadySentException($this, self::EXCEPTION_HEADERS_ALREADY_SENT); } elseif (!headers_sent()) { // Send headers out - header("HTTP/1.1 {$this->responseStatus}"); + header('HTTP/1.1 ' . $this->responseStatus); // Used later $now = gmdate('D, d M Y H:i:s') . ' GMT'; @@ -170,15 +170,15 @@ class BaseResponse extends BaseFrameworkSystem { // Send all headers foreach ($this->responseHeaders as $name => $value) { - header("{$name}: {$value}"); - //* DEBUG: */ echo "{$name}: {$value}
\n"; + header($name . ': ' . $value); + //* DEBUG: */ $this->debugOutput('name=' . $name . ',value=' . $value); } // END - foreach // Send cookies out? if (count($this->cookies) > 0) { // Send all cookies $cookieString = implode(' ', $this->cookies); - header("Set-Cookie: {$cookieString}"); + header('Set-Cookie: ' . $cookieString); // Remove them all $this->cookies = array();