Set permissions when saving files

Fixes https://github.com/elrido/ZeroBin/issues/80
This commit is contained in:
rugk 2016-06-21 17:18:11 +02:00 committed by GitHub
parent 6bb81d779e
commit 8a48e9ce78

View File

@ -116,6 +116,7 @@ abstract class persistence
self::_initialize();
$file = self::$_path . DIRECTORY_SEPARATOR . $filename;
$writtenBytes = @file_put_contents($file, $data, LOCK_EX);
chmod($file, 0640); // protect file access
if ($writtenBytes === false || $writtenBytes < strlen($data)) {
throw new Exception('unable to write to file ' . $file, 13);
}