Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
404757bf
Commit
404757bf
authored
Dec 26, 2013
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #1631: Charset is now explicitly set to UTF-8 when serving JSON
parent
3577b5c9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
Response.php
framework/yii/web/Response.php
+1
-1
No files found.
framework/CHANGELOG.md
View file @
404757bf
...
...
@@ -15,6 +15,7 @@ Yii Framework 2 Change Log
-
Bug #1582: Error messages shown via client-side validation should not be double encoded (qiangxue)
-
Bug #1591: StringValidator is accessing undefined property (qiangxue)
-
Bug #1597: Added
`enableAutoLogin`
to basic and advanced application templates so "remember me" now works properly (samdark)
-
Bug #1631: Charset is now explicitly set to UTF-8 when serving JSON (samdark)
-
Bug: Fixed
`Call to a member function registerAssetFiles() on a non-object`
in case of wrong
`sourcePath`
for an asset bundle (samdark)
-
Bug: Fixed incorrect event name for
`yii\jui\Spinner`
(samdark)
-
Bug: Json::encode() did not handle objects that implement JsonSerializable interface correctly (cebe)
...
...
framework/yii/web/Response.php
View file @
404757bf
...
...
@@ -799,7 +799,7 @@ class Response extends \yii\base\Response
$this
->
content
=
$this
->
data
;
break
;
case
self
::
FORMAT_JSON
:
$this
->
getHeaders
()
->
set
(
'Content-Type'
,
'application/json'
);
$this
->
getHeaders
()
->
set
(
'Content-Type'
,
'application/json
; charset=UTF-8
'
);
$this
->
content
=
Json
::
encode
(
$this
->
data
);
break
;
case
self
::
FORMAT_JSONP
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment