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
5771dfc4
Commit
5771dfc4
authored
May 21, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3529 from skotos/3522-normalizepath-current-path
#3522 normalizepath to allow current path
parents
b1b6a769
390004a8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
BaseFileHelper.php
framework/helpers/BaseFileHelper.php
+2
-1
FileHelperTest.php
tests/unit/framework/helpers/FileHelperTest.php
+6
-0
No files found.
framework/CHANGELOG.md
View file @
5771dfc4
...
@@ -28,6 +28,7 @@ Yii Framework 2 Change Log
...
@@ -28,6 +28,7 @@ Yii Framework 2 Change Log
-
Bug #3431: Allow using extended ErrorHandler class from the app namespace (cebe)
-
Bug #3431: Allow using extended ErrorHandler class from the app namespace (cebe)
-
Bug #3436: Fixed the issue that
`ServiceLocator`
still returns the old component after calling
`set()`
with a new definition (qiangxue)
-
Bug #3436: Fixed the issue that
`ServiceLocator`
still returns the old component after calling
`set()`
with a new definition (qiangxue)
-
Bug #3458: Fixed the bug that the image rendered by
`CaptchaAction`
was using a wrong content type (MDMunir, qiangxue)
-
Bug #3458: Fixed the bug that the image rendered by
`CaptchaAction`
was using a wrong content type (MDMunir, qiangxue)
-
Bug #3522: Fixed BaseFileHelper::normalizePath to allow a (.) for the current path. (skotos)
-
Bug: Fixed inconsistent return of
`\yii\console\Application::runAction()`
(samdark)
-
Bug: Fixed inconsistent return of
`\yii\console\Application::runAction()`
(samdark)
-
Enh #2264:
`CookieCollection::has()`
will return false for expired or removed cookies (qiangxue)
-
Enh #2264:
`CookieCollection::has()`
will return false for expired or removed cookies (qiangxue)
-
Enh #2435:
`yii\db\IntegrityException`
is now thrown on database integrity errors instead of general
`yii\db\Exception`
(samdark)
-
Enh #2435:
`yii\db\IntegrityException`
is now thrown on database integrity errors instead of general
`yii\db\Exception`
(samdark)
...
...
framework/helpers/BaseFileHelper.php
View file @
5771dfc4
...
@@ -56,7 +56,8 @@ class BaseFileHelper
...
@@ -56,7 +56,8 @@ class BaseFileHelper
$parts
[]
=
$part
;
$parts
[]
=
$part
;
}
}
}
}
return
implode
(
$ds
,
$parts
);
$path
=
implode
(
$ds
,
$parts
);
return
$path
===
''
?
'.'
:
$path
;
}
}
/**
/**
...
...
tests/unit/framework/helpers/FileHelperTest.php
View file @
5771dfc4
...
@@ -369,10 +369,16 @@ class FileHelperTest extends TestCase
...
@@ -369,10 +369,16 @@ class FileHelperTest extends TestCase
$this
->
assertEquals
(
"..
{
$ds
}
c"
,
FileHelper
::
normalizePath
(
'//a/.\\b//..//..//../../c'
));
$this
->
assertEquals
(
"..
{
$ds
}
c"
,
FileHelper
::
normalizePath
(
'//a/.\\b//..//..//../../c'
));
// relative paths
// relative paths
$this
->
assertEquals
(
"."
,
FileHelper
::
normalizePath
(
'.'
));
$this
->
assertEquals
(
"."
,
FileHelper
::
normalizePath
(
'./'
));
$this
->
assertEquals
(
"a"
,
FileHelper
::
normalizePath
(
'.\\a'
));
$this
->
assertEquals
(
"a
{
$ds
}
b"
,
FileHelper
::
normalizePath
(
'./a\\b'
));
$this
->
assertEquals
(
"."
,
FileHelper
::
normalizePath
(
'./a\\../'
));
$this
->
assertEquals
(
"..
{
$ds
}
..
{
$ds
}
a"
,
FileHelper
::
normalizePath
(
'../..\\a'
));
$this
->
assertEquals
(
"..
{
$ds
}
..
{
$ds
}
a"
,
FileHelper
::
normalizePath
(
'../..\\a'
));
$this
->
assertEquals
(
"..
{
$ds
}
..
{
$ds
}
a"
,
FileHelper
::
normalizePath
(
'../..\\a/../a'
));
$this
->
assertEquals
(
"..
{
$ds
}
..
{
$ds
}
a"
,
FileHelper
::
normalizePath
(
'../..\\a/../a'
));
$this
->
assertEquals
(
"..
{
$ds
}
..
{
$ds
}
b"
,
FileHelper
::
normalizePath
(
'../..\\a/../b'
));
$this
->
assertEquals
(
"..
{
$ds
}
..
{
$ds
}
b"
,
FileHelper
::
normalizePath
(
'../..\\a/../b'
));
$this
->
assertEquals
(
"..
{
$ds
}
a"
,
FileHelper
::
normalizePath
(
'./..\\a'
));
$this
->
assertEquals
(
"..
{
$ds
}
a"
,
FileHelper
::
normalizePath
(
'./..\\a'
));
$this
->
assertEquals
(
"..
{
$ds
}
a"
,
FileHelper
::
normalizePath
(
'././..\\a'
));
$this
->
assertEquals
(
"..
{
$ds
}
a"
,
FileHelper
::
normalizePath
(
'./..\\a/../a'
));
$this
->
assertEquals
(
"..
{
$ds
}
a"
,
FileHelper
::
normalizePath
(
'./..\\a/../a'
));
$this
->
assertEquals
(
"..
{
$ds
}
b"
,
FileHelper
::
normalizePath
(
'./..\\a/../b'
));
$this
->
assertEquals
(
"..
{
$ds
}
b"
,
FileHelper
::
normalizePath
(
'./..\\a/../b'
));
}
}
...
...
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