Browse Source

Soft fail for chmod errors

rugk 10 năm trước cách đây
mục cha
commit
fd5a7a07ae
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      lib/persistence.php

+ 1 - 1
lib/persistence.php

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