From 7bcffaf69d46f44263cb79dc4b5d0054202197ea Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 28 Feb 2012 17:48:24 +0000 Subject: [PATCH] Double->single quotes converted --- inc/classes/main/response/class_BaseResponse.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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(); -- 2.39.5