FileCache: Use the correct variable when checking a file's modification time
refs #2917
This commit is contained in:
parent
30b752c72c
commit
7b7bfb5a5d
|
@ -99,7 +99,7 @@ class FileCache
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$info = stat($file);
|
$info = stat($filename);
|
||||||
|
|
||||||
if ($info === false) {
|
if ($info === false) {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue