Update Response.php

$_SERVER['SERVER_PROTOCOL'] returns 'HTTP/1.0' or 'HTTP/1.1'
This commit is contained in:
Ceana Razvan
2014-04-24 03:42:23 +03:00
parent 3e3e443544
commit 48635c2d3e

View File

@@ -242,7 +242,7 @@ class Response extends \yii\base\Response
public function init()
{
if ($this->version === null) {
if (isset($_SERVER['SERVER_PROTOCOL']) && $_SERVER['SERVER_PROTOCOL'] === '1.0') {
if (isset($_SERVER['SERVER_PROTOCOL']) && $_SERVER['SERVER_PROTOCOL'] === 'HTTP/1.0') {
$this->version = '1.0';
} else {
$this->version = '1.1';