1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-18 17:14:04 +01:00

error handling

This commit is contained in:
Savetheinternet 2011-05-20 17:22:08 +10:00
parent 12d3419989
commit d1381371c4

View File

@ -212,11 +212,12 @@
}
function file_write($path, $data) {
$fp = fopen($path, 'c');
if(!$fp = fopen($path, 'c'))
error('Unable to open file for writing: ' . $path);
// File locking
if(!flock($fp, LOCK_EX)) {
error('Unable to lock file!');
error('Unable to lock file: ' . $path);
}
// Truncate file