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
646e371b
Commit
646e371b
authored
Feb 04, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #1812: Hide potential warning message due to race condition occurring to…
Fixes #1812: Hide potential warning message due to race condition occurring to `Session::regenerateID()` call
parent
9f5dbd72
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
Session.php
framework/web/Session.php
+3
-1
No files found.
framework/CHANGELOG.md
View file @
646e371b
...
...
@@ -26,6 +26,7 @@ Yii Framework 2 Change Log
-
Bug #1710: OpenId auth client does not request required attributes correctly (klimov-paul)
-
Bug #1798: Fixed label attributes for array fields (zhuravljov)
-
Bug #1800: Better check for
`$_SERVER['HTTPS']`
in
`yii\web\Request::getIsSecureConnection()`
(ginus, samdark)
-
Bug #1812: Hide potential warning message due to race condition occurring to
`Session::regenerateID()`
call (qiangxue)
-
Bug #1827: Debugger toolbar is loaded twice if an action is calling
`run()`
to execute another action (qiangxue)
-
Bug #1868: Added ability to exclude tables from FixtureController apply/clear actions. (Ragazzo)
-
Bug #1869: Fixed tables clearing.
`TRUNCATE`
changed to
`DELETE`
to avoid postgresql tables checks (and truncating all tables) (Ragazzo)
...
...
framework/web/Session.php
View file @
646e371b
...
...
@@ -211,7 +211,9 @@ class Session extends Component implements \IteratorAggregate, \ArrayAccess, \Co
*/
public
function
regenerateID
(
$deleteOldSession
=
false
)
{
session_regenerate_id
(
$deleteOldSession
);
// add @ to inhibit possible warning due to race condition
// https://github.com/yiisoft/yii2/pull/1812
@
session_regenerate_id
(
$deleteOldSession
);
}
/**
...
...
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