summaryrefslogtreecommitdiff
path: root/lib/prado/framework/Web/THttpResponse.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/prado/framework/Web/THttpResponse.php')
-rw-r--r--lib/prado/framework/Web/THttpResponse.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/prado/framework/Web/THttpResponse.php b/lib/prado/framework/Web/THttpResponse.php
index 48328c3..e11a715 100644
--- a/lib/prado/framework/Web/THttpResponse.php
+++ b/lib/prado/framework/Web/THttpResponse.php
@@ -531,10 +531,7 @@ class THttpResponse extends TModule implements ITextWriter
if($this->getRequest()->getHttpProtocolVersion() === null)
$protocol='HTTP/1.1';
- $phpSapiName = substr(php_sapi_name(), 0, 3);
- $cgi = $phpSapiName == 'cgi' || $phpSapiName == 'fpm';
-
- header(($cgi ? 'Status:' : $protocol).' '.$this->_status.' '.$this->_reason, true, TPropertyValue::ensureInteger($this->_status));
+ header($protocol.' '.$this->_status.' '.$this->_reason, true, TPropertyValue::ensureInteger($this->_status));
$this->_httpHeaderSent = true;
}