Change Permissions in pochePictures.php

Stored Pictures are not accessible (on my server), when permission is set to 0705, but instead, when using 0755 (or for example to 0715) all is working as expected. So maybe it would be good, considering in changing the permission of created directories in the assets directory
This commit is contained in:
FireFox 2014-01-03 11:17:15 +01:00
parent 2eb111a300
commit b5c1ed1227
1 changed files with 3 additions and 3 deletions

View File

@ -84,12 +84,12 @@ function create_assets_directory($id)
{
$assets_path = ABS_PATH;
if(!is_dir($assets_path)) {
mkdir($assets_path, 0705);
mkdir($assets_path, 0715);
}
$article_directory = $assets_path . $id;
if(!is_dir($article_directory)) {
mkdir($article_directory, 0705);
mkdir($article_directory, 0715);
}
return $article_directory;
@ -107,4 +107,4 @@ function remove_directory($directory)
}
return rmdir($directory);
}
}
}