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
50703f8a
Commit
50703f8a
authored
Jan 08, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #1844: Calling `Response::sendFile()` would cause sending the response twice
parent
4609a94d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
Response.php
framework/yii/web/Response.php
+10
-0
No files found.
framework/CHANGELOG.md
View file @
50703f8a
...
...
@@ -24,6 +24,7 @@ Yii Framework 2 Change Log
-
Bug #1798: Fixed label attributes for array fields (zhuravljov)
-
Bug #1800: Better check for
`$_SERVER['HTTPS']`
in
`yii\web\Request::getIsSecureConnection()`
(ginus, samdark)
-
Bug #1827: Debugger toolbar is loaded twice if an action is calling
`run()`
to execute another action (qiangxue)
-
Bug #1844: Calling
`Response::sendFile()`
would cause sending the response twice (qiangxue)
-
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 @
50703f8a
...
...
@@ -136,6 +136,10 @@ class Response extends \yii\base\Response
*/
public
$version
;
/**
* @var boolean whether the response has been sent. If this is true, calling [[send()]] will do nothing.
*/
public
$isSent
=
false
;
/**
* @var array list of HTTP status codes and the corresponding texts
*/
public
static
$httpStatuses
=
[
...
...
@@ -281,6 +285,11 @@ class Response extends \yii\base\Response
*/
public
function
send
()
{
if
(
$this
->
isSent
)
{
return
;
}
else
{
$this
->
isSent
=
true
;
}
$this
->
trigger
(
self
::
EVENT_BEFORE_SEND
);
$this
->
prepare
();
$this
->
trigger
(
self
::
EVENT_AFTER_PREPARE
);
...
...
@@ -300,6 +309,7 @@ class Response extends \yii\base\Response
$this
->
statusText
=
'OK'
;
$this
->
data
=
null
;
$this
->
content
=
null
;
$this
->
isSent
=
false
;
}
/**
...
...
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