mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-13 18:40:49 +01:00
file_unlink() should return result
This commit is contained in:
parent
12d6dc85e6
commit
c119705326
3
inc/functions.php
Normal file → Executable file
3
inc/functions.php
Normal file → Executable file
@ -317,7 +317,7 @@
|
|||||||
$debug['unlink'][] = $path;
|
$debug['unlink'][] = $path;
|
||||||
}
|
}
|
||||||
|
|
||||||
@unlink($path);
|
$ret = @unlink($path);
|
||||||
if(isset($config['purge']) && isset($_SERVER['HTTP_HOST'])) {
|
if(isset($config['purge']) && isset($_SERVER['HTTP_HOST'])) {
|
||||||
// Purge cache
|
// Purge cache
|
||||||
if(basename($path) == $config['file_index']) {
|
if(basename($path) == $config['file_index']) {
|
||||||
@ -332,6 +332,7 @@
|
|||||||
}
|
}
|
||||||
purge($path);
|
purge($path);
|
||||||
}
|
}
|
||||||
|
return $ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
function listBoards() {
|
function listBoards() {
|
||||||
|
Loading…
Reference in New Issue
Block a user