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
aa5e82ec
Commit
aa5e82ec
authored
Jan 14, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #1965: `Controller::findLayoutFile()` returns incorrect file path when…
Fixes #1965: `Controller::findLayoutFile()` returns incorrect file path when layout name starts with a slash
parent
8ede55a0
Hide 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
Controller.php
framework/base/Controller.php
+1
-1
No files found.
framework/CHANGELOG.md
View file @
aa5e82ec
...
@@ -27,6 +27,7 @@ Yii Framework 2 Change Log
...
@@ -27,6 +27,7 @@ Yii Framework 2 Change Log
-
Bug #1827: Debugger toolbar is loaded twice if an action is calling
`run()`
to execute another action (qiangxue)
-
Bug #1827: Debugger toolbar is loaded twice if an action is calling
`run()`
to execute another action (qiangxue)
-
Bug #1870: Validation errors weren't properly translated when using clientside validation (samdark)
-
Bug #1870: Validation errors weren't properly translated when using clientside validation (samdark)
-
Bug #1937: Fixed wrong behavior or advanced app's
`init --env`
when called without parameter actually specified (samdark)
-
Bug #1937: Fixed wrong behavior or advanced app's
`init --env`
when called without parameter actually specified (samdark)
-
Bug #1965:
`Controller::findLayoutFile()`
returns incorrect file path when layout name starts with a slash (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
`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: Fixed incorrect event name for
`yii\jui\Spinner`
(samdark)
-
Bug: Json::encode() did not handle objects that implement JsonSerializable interface correctly (cebe)
-
Bug: Json::encode() did not handle objects that implement JsonSerializable interface correctly (cebe)
...
...
framework/base/Controller.php
View file @
aa5e82ec
...
@@ -400,7 +400,7 @@ class Controller extends Component implements ViewContextInterface
...
@@ -400,7 +400,7 @@ class Controller extends Component implements ViewContextInterface
if
(
strncmp
(
$layout
,
'@'
,
1
)
===
0
)
{
if
(
strncmp
(
$layout
,
'@'
,
1
)
===
0
)
{
$file
=
Yii
::
getAlias
(
$layout
);
$file
=
Yii
::
getAlias
(
$layout
);
}
elseif
(
strncmp
(
$layout
,
'/'
,
1
)
===
0
)
{
}
elseif
(
strncmp
(
$layout
,
'/'
,
1
)
===
0
)
{
$file
=
Yii
::
$app
->
getLayoutPath
()
.
DIRECTORY_SEPARATOR
.
$layout
;
$file
=
Yii
::
$app
->
getLayoutPath
()
.
DIRECTORY_SEPARATOR
.
substr
(
$layout
,
1
)
;
}
else
{
}
else
{
$file
=
$module
->
getLayoutPath
()
.
DIRECTORY_SEPARATOR
.
$layout
;
$file
=
$module
->
getLayoutPath
()
.
DIRECTORY_SEPARATOR
.
$layout
;
}
}
...
...
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