diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-01-03 02:20:40 -0800 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-01-03 02:20:40 -0800 |
commit | 52e3f58c728cc3d2dcc3208ffb6d0d5869cdc6d9 (patch) | |
tree | 5658c886898fb0cfc1dd32ae9549fd52fa6328ed /inc/poche/pochePictures.php | |
parent | 4d058d48243e48876599dc006bb49ce28ef7db25 (diff) | |
parent | b5c1ed12273d72888b443e801123252d92f8c8ec (diff) | |
download | wallabag-52e3f58c728cc3d2dcc3208ffb6d0d5869cdc6d9.tar.gz wallabag-52e3f58c728cc3d2dcc3208ffb6d0d5869cdc6d9.tar.zst wallabag-52e3f58c728cc3d2dcc3208ffb6d0d5869cdc6d9.zip |
Merge pull request #380 from F1reF0x/dev
Change Permissions in pochePictures.php
Diffstat (limited to 'inc/poche/pochePictures.php')
-rw-r--r-- | inc/poche/pochePictures.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/poche/pochePictures.php b/inc/poche/pochePictures.php index 4e4a0b08..b0cfb9df 100644 --- a/inc/poche/pochePictures.php +++ b/inc/poche/pochePictures.php | |||
@@ -84,12 +84,12 @@ function create_assets_directory($id) | |||
84 | { | 84 | { |
85 | $assets_path = ABS_PATH; | 85 | $assets_path = ABS_PATH; |
86 | if(!is_dir($assets_path)) { | 86 | if(!is_dir($assets_path)) { |
87 | mkdir($assets_path, 0705); | 87 | mkdir($assets_path, 0715); |
88 | } | 88 | } |
89 | 89 | ||
90 | $article_directory = $assets_path . $id; | 90 | $article_directory = $assets_path . $id; |
91 | if(!is_dir($article_directory)) { | 91 | if(!is_dir($article_directory)) { |
92 | mkdir($article_directory, 0705); | 92 | mkdir($article_directory, 0715); |
93 | } | 93 | } |
94 | 94 | ||
95 | return $article_directory; | 95 | return $article_directory; |
@@ -107,4 +107,4 @@ function remove_directory($directory) | |||
107 | } | 107 | } |
108 | return rmdir($directory); | 108 | return rmdir($directory); |
109 | } | 109 | } |
110 | } \ No newline at end of file | 110 | } |