Browse Source

Reverted changeset 595ac6d0be

tags/2.0.0-alpha
Qiang Xue 11 years ago
parent
commit
947a557240
  1. 2
      framework/yii/web/Response.php

2
framework/yii/web/Response.php

@ -781,7 +781,7 @@ class Response extends \yii\base\Response
$this->content = $this->data;
break;
case self::FORMAT_JSON:
$this->getHeaders()->set('Content-Type', 'application/json; charset=' . $this->charset);
$this->getHeaders()->set('Content-Type', 'application/json');
$this->content = Json::encode($this->data);
break;
case self::FORMAT_JSONP:

Loading…
Cancel
Save