Fix doubly applied basepaths to lockfiles.
This commit is contained in:
parent
6122c449ab
commit
1134497129
|
@ -1159,7 +1159,7 @@
|
|||
|
||||
if ($files) {
|
||||
foreach ($files as $file) {
|
||||
if (!file_is_locked($file) && time() - filemtime($file) > 86400*2) {
|
||||
if (!file_is_locked(basename($file)) && time() - filemtime($file) > 86400*2) {
|
||||
unlink($file);
|
||||
++$num_deleted;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue