FileCache: Use the correct variable when checking a file's modification time

refs #2917
This commit is contained in:
Johannes Meyer 2017-08-22 08:37:12 +02:00
parent 30b752c72c
commit 7b7bfb5a5d
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ class FileCache
return true;
}
$info = stat($file);
$info = stat($filename);
if ($info === false) {
return false;