mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX Fixed filemtime() check in Requirements_Backend::process_combined_files() not getting the right path
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@100616 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
e078013547
commit
5d47b22c44
@ -921,7 +921,7 @@ class Requirements_Backend {
|
||||
foreach($fileList as $file) {
|
||||
$srcLastMod = max(filemtime($base . $file), $srcLastMod);
|
||||
}
|
||||
$refresh = $srcLastMod > filemtime($base . $combinedFile);
|
||||
$refresh = $srcLastMod > filemtime($combinedFilePath);
|
||||
} else {
|
||||
// file doesn't exist, or refresh was explicitly required
|
||||
$refresh = true;
|
||||
|
Loading…
Reference in New Issue
Block a user