Browse Source

file_unlink() should return result

pull/40/head
Savetheinternet 13 years ago
parent
commit
c119705326
  1. 3
      inc/functions.php

3
inc/functions.php

@ -317,7 +317,7 @@
$debug['unlink'][] = $path;
}
@unlink($path);
$ret = @unlink($path);
if(isset($config['purge']) && isset($_SERVER['HTTP_HOST'])) {
// Purge cache
if(basename($path) == $config['file_index']) {
@ -332,6 +332,7 @@
}
purge($path);
}
return $ret;
}
function listBoards() {

Loading…
Cancel
Save