diff options
author | tof <> | 2008-05-16 12:59:42 +0000 |
---|---|---|
committer | tof <> | 2008-05-16 12:59:42 +0000 |
commit | f313138c9545d567d411e80aead77eb03c83ae25 (patch) | |
tree | ddd5a102a0f2da51fb9ed717b50904aaedcfddd8 /framework/Web/THttpResponse.php | |
parent | aaea27e8104ffc486d19ed0d9c88405ca1fc32cd (diff) |
Fixed #841
Diffstat (limited to 'framework/Web/THttpResponse.php')
-rw-r--r-- | framework/Web/THttpResponse.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/framework/Web/THttpResponse.php b/framework/Web/THttpResponse.php index af751828..64c9eaba 100644 --- a/framework/Web/THttpResponse.php +++ b/framework/Web/THttpResponse.php @@ -257,8 +257,11 @@ class THttpResponse extends TModule implements ITextWriter /** * Set the HTTP status code for the response. + * The code and its reason will be sent to client using the currently requested http protocol version (see {@link THttpRequest::getHttpProtocolVersion}) + * Keep in mind that HTTP/1.0 clients might not understand all status codes from HTTP/1.1 * * @param integer HTTP status code + * @param string HTTP status reason, defaults to standard HTTP reasons */ public function setStatusCode($status, $reason=null) { @@ -432,7 +435,10 @@ class THttpResponse extends TModule implements ITextWriter */ protected function sendHttpHeader () { - header("HTTP/1.1 {$this->_status} {$this->_reason}", true, $this->_status); + if (($version=$this->getRequest()->getHttpProtocolVersion())==='') + header (' ', true, $this->_status); + else + header($version.' '.$this->_status.' '.$this->_reason, true, $this->_status); } /** |