Преглед изворни кода

Merge pull request #95 from elrido/rugk-permissions

Set permissions when saving files
El RIDO пре 10 година
родитељ
комит
46d32948f1
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      lib/persistence.php

+ 1 - 0
lib/persistence.php

@@ -119,6 +119,7 @@ abstract class persistence
         if ($writtenBytes === false || $writtenBytes < strlen($data)) {
         if ($writtenBytes === false || $writtenBytes < strlen($data)) {
             throw new Exception('unable to write to file ' . $file, 13);
             throw new Exception('unable to write to file ' . $file, 13);
         }
         }
+        @chmod($file, 0640); // protect file access
         return $file;
         return $file;
     }
     }
 }
 }