PURGE after the file has been written to, not before.

This commit is contained in:
Savetheinternet 2011-05-22 01:13:44 +10:00
parent 0137b96464
commit 41c2b29a55

View File

@ -252,15 +252,6 @@
return;
}
if(isset($config['purge']) && isset($_SERVER['HTTP_HOST'])) {
// Purge cache
if(basename($path) == $config['file_index']) {
// Index file (/index.html); purge "/" as well
purge(dirname($path) . '/');
}
purge($path);
}
if(!$fp = fopen($path, 'c'))
error('Unable to open file for writing: ' . $path);
@ -276,6 +267,15 @@
flock($fp, LOCK_UN);
fclose($fp);
if(isset($config['purge']) && isset($_SERVER['HTTP_HOST'])) {
// Purge cache
if(basename($path) == $config['file_index']) {
// Index file (/index.html); purge "/" as well
purge(dirname($path) . '/');
}
purge($path);
}
}
function listBoards() {