aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2010-05-27 07:30:03 +0000
committerplegall <plg@piwigo.org>2010-05-27 07:30:03 +0000
commit50cd8ed52300a8613971f0d9bc0e66f4ca293b7b (patch)
treeaedbaf6b77a033d8d83511799b4c5363ed99c2a9 /include
parent74bf86ecc5a352398330140d510ee150bf050e8e (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')
-rw-r--r--include/functions.inc.php4
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);