Преглед на файлове

Soft fail for chmod errors

rugk преди 10 години
родител
ревизия
fd5a7a07ae
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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;
     }
 }