fixed #50, file_put_contents함수에 LOCK_EX flag 적

This commit is contained in:
khongchi 2013-11-15 12:56:29 +09:00
parent ab021d75c7
commit 71c8a0b99f
11 changed files with 14 additions and 14 deletions

View file

@ -176,7 +176,7 @@ class FileHandler
$flags = 0;
}
@file_put_contents($file_name, $buff, $flags);
@file_put_contents($file_name, $buff, $flags|LOCK_EX);
@chmod($file_name, 0644);
}