diff --git a/control/HTTPResponse.php b/control/HTTPResponse.php index d52b8bc18..b7bf3aebb 100755 --- a/control/HTTPResponse.php +++ b/control/HTTPResponse.php @@ -225,7 +225,7 @@ class SS_HTTPResponse { if(!headers_sent()) { header($_SERVER['SERVER_PROTOCOL'] . " $this->statusCode " . $this->getStatusDescription()); foreach($this->headers as $header => $value) { - header("$header: $value"); + header("$header: $value", true, $this->statusCode); } }