Browse Source

Merge pull request #3227 from xterr/patch-1

Update Response.php
tags/2.0.0-rc
Qiang Xue 11 years ago
parent
commit
904c32eb05
  1. 2
      framework/web/Response.php

2
framework/web/Response.php

@ -242,7 +242,7 @@ class Response extends \yii\base\Response
public function init() public function init()
{ {
if ($this->version === null) { 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'; $this->version = '1.0';
} else { } else {
$this->version = '1.1'; $this->version = '1.1';

Loading…
Cancel
Save