diff options
author | friendica <info@friendica.com> | 2015-03-29 16:05:08 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-03-29 16:05:08 -0700 |
commit | 505e5e90b26fa398e08b6fcad266b7f0ac759bd2 (patch) | |
tree | 199ce1352c34d1d915e2a00b9eb8879fa2e0e7a0 /boot.php | |
parent | 76a6739b93c1c8f08dd95a45235dd89fb4c507af (diff) | |
download | volse-hubzilla-505e5e90b26fa398e08b6fcad266b7f0ac759bd2.tar.gz volse-hubzilla-505e5e90b26fa398e08b6fcad266b7f0ac759bd2.tar.bz2 volse-hubzilla-505e5e90b26fa398e08b6fcad266b7f0ac759bd2.zip |
fix os_mkdir
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1239,8 +1239,9 @@ function absurl($path) { function os_mkdir($path, $mode = 0777, $recursive = false) { $oldumask = @umask(0); - @mkdir($path, $mode, $recursive); - @umask($oldumask); + $result = @mkdir($path, $mode, $recursive); + @umask($oldumask); + return $result; } /** |