Fix della funzione create_dir

This commit is contained in:
Thomas Zilio 2017-09-07 16:55:25 +02:00
parent d0cc59019e
commit e43cdb0998
1 changed files with 1 additions and 1 deletions

View File

@ -889,5 +889,5 @@ function redirectOperation()
function create_dir($path)
{
return create_dir($path, 0777, true);
return mkdir($path, 0777, true);
}