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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
81d5dd01
Commit
81d5dd01
authored
Jul 23, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better Windows detection
parent
67bd4972
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
AppController.php
build/controllers/AppController.php
+1
-1
FileMutex.php
framework/mutex/FileMutex.php
+1
-1
No files found.
build/controllers/AppController.php
View file @
81d5dd01
...
@@ -29,7 +29,7 @@ class AppController extends Controller
...
@@ -29,7 +29,7 @@ class AppController extends Controller
*/
*/
protected
function
unlink
(
$file
)
protected
function
unlink
(
$file
)
{
{
if
(
is_dir
(
$file
)
&&
strncasecmp
(
PHP_OS
,
'WIN'
,
3
)
===
0
)
{
if
(
is_dir
(
$file
)
&&
DIRECTORY_SEPARATOR
===
'\\'
)
{
rmdir
(
$file
);
rmdir
(
$file
);
}
else
{
}
else
{
unlink
(
$file
);
unlink
(
$file
);
...
...
framework/mutex/FileMutex.php
View file @
81d5dd01
...
@@ -70,7 +70,7 @@ class FileMutex extends Mutex
...
@@ -70,7 +70,7 @@ class FileMutex extends Mutex
*/
*/
public
function
init
()
public
function
init
()
{
{
if
(
stripos
(
php_uname
(
's'
),
'win'
)
===
0
)
{
if
(
DIRECTORY_SEPARATOR
===
'\\'
)
{
throw
new
InvalidConfigException
(
'FileMutex does not have MS Windows operating system support.'
);
throw
new
InvalidConfigException
(
'FileMutex does not have MS Windows operating system support.'
);
}
}
$this
->
mutexPath
=
Yii
::
getAlias
(
$this
->
mutexPath
);
$this
->
mutexPath
=
Yii
::
getAlias
(
$this
->
mutexPath
);
...
...
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