mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-28 04:09:56 +03:00
merge r6384 from branch 2.1 to trunk
bug 1704 fixed: windows needs a specific directory separator when creating recursive directory. git-svn-id: http://piwigo.org/svn/trunk@6385 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
5f597c2cba
commit
d63d95e024
2 changed files with 8 additions and 0 deletions
|
@ -141,6 +141,10 @@ function add_uploaded_file($source_filepath, $original_filename=null, $categorie
|
|||
function prepare_directory($directory)
|
||||
{
|
||||
if (!is_dir($directory)) {
|
||||
if (substr(PHP_OS, 0, 3) == 'WIN')
|
||||
{
|
||||
$directory = str_replace('/', DIRECTORY_SEPARATOR, $directory);
|
||||
}
|
||||
umask(0000);
|
||||
$recursive = true;
|
||||
if (!@mkdir($directory, 0777, $recursive))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue