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
8923d20a
Commit
8923d20a
authored
Nov 07, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #5619: `yii\log\Target` should not attempt to start session when there is none
parent
438a1691
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
Target.php
framework/log/Target.php
+6
-1
No files found.
framework/CHANGELOG.md
View file @
8923d20a
...
...
@@ -10,6 +10,7 @@ Yii Framework 2 Change Log
-
Bug #5570:
`yii\bootstrap\Tabs`
would throw an exception if
`content`
is not set for one of its
`items`
(RomeroMsk)
-
Bug #5584:
`yii\rbac\DbRbacManager`
should not delete items when deleting a rule on a database not supporting cascade update (mdmunir)
-
Bug #5601: Simple conditions in Query::where() and ActiveQuery::where() did not allow
`yii\db\Expression`
to be used as the value (cebe, stevekr)
-
Bug #5619:
`yii\log\Target`
should not attempt to start session when there is none (klimov-paul, qiangxue)
-
Bug #5657:
`yii\caching\ApcCache::mset()`
and
`madd()`
may cause warning in some APC setup (LAV45)
-
Bug #5665: The
`currentPage`
meta data in the RESTful result should be 1-based, similar to that in HTTP headers (qiangxue)
-
Bug #5682: The
`asset`
command would incorrectly combine CSS files when
`UrlManager::linkAssets`
is true (dmvslv)
...
...
framework/log/Target.php
View file @
8923d20a
...
...
@@ -270,8 +270,13 @@ abstract class Target extends Component
$ip
=
$request
instanceof
Request
?
$request
->
getUserIP
()
:
'-'
;
/* @var $user \yii\web\User */
$user
=
Yii
::
$app
->
has
(
'user'
,
true
)
?
Yii
::
$app
->
get
(
'user'
)
:
null
;
$userID
=
$user
?
$user
->
getId
(
false
)
:
'-'
;
if
(
$user
&&
(
$identity
=
$user
->
getIdentity
(
false
)))
{
$userID
=
$identity
->
getId
();
}
else
{
$userID
=
'-'
;
}
/* @var $session \yii\web\Session */
$session
=
Yii
::
$app
->
has
(
'session'
,
true
)
?
Yii
::
$app
->
get
(
'session'
)
:
null
;
...
...
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