diff options
author | plegall <plg@piwigo.org> | 2010-05-27 07:30:03 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-05-27 07:30:03 +0000 |
commit | 50cd8ed52300a8613971f0d9bc0e66f4ca293b7b (patch) | |
tree | aedbaf6b77a033d8d83511799b4c5363ed99c2a9 /include/functions.inc.php | |
parent | 74bf86ecc5a352398330140d510ee150bf050e8e (diff) |
bug 1704 fixed: windows needs a specific directory separator when creating
recursive directory.
git-svn-id: http://piwigo.org/svn/branches/2.1@6384 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/functions.inc.php')
-rw-r--r-- | include/functions.inc.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/functions.inc.php b/include/functions.inc.php index ede0cf30a..0a93d3927 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -168,6 +168,10 @@ function mkgetdir($dir, $flags=MKGETDIR_DEFAULT) { if ( !is_dir($dir) ) { + if (substr(PHP_OS, 0, 3) == 'WIN') + { + $dir = str_replace('/', DIRECTORY_SEPARATOR, $dir); + } $umask = umask(0); $mkd = @mkdir($dir, 0755, ($flags&MKGETDIR_RECURSIVE) ? true:false ); umask($umask); |