]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Change Permissions in pochePictures.php 380/head
authorFireFox <github@firefox.info>
Fri, 3 Jan 2014 10:17:15 +0000 (11:17 +0100)
committerFireFox <github@firefox.info>
Fri, 3 Jan 2014 10:17:15 +0000 (11:17 +0100)
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

inc/poche/pochePictures.php

index 4e4a0b08561eed78c8aecb81b459696842593501..b0cfb9df84934f657fd44e664750ec3956edbea8 100644 (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);
     }
-}
\ No newline at end of file
+}