mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 11:44:10 +09:00
Merge #1802 $modified_timed -> $modified_time by qkrcjfgus33
* pr/1802: $modified_timed -> $modified_time
This commit is contained in:
commit
9b341a85b8
1 changed files with 25 additions and 25 deletions
4
classes/cache/CacheFile.class.php
vendored
4
classes/cache/CacheFile.class.php
vendored
|
|
@ -97,7 +97,7 @@ class CacheFile extends CacheBase
|
|||
|
||||
if(file_exists($cache_file))
|
||||
{
|
||||
if($modified_time > 0 && filemtime($cache_file) < $modified_timed)
|
||||
if($modified_time > 0 && filemtime($cache_file) < $modified_time)
|
||||
{
|
||||
FileHandler::removeFile($cache_file);
|
||||
return false;
|
||||
|
|
@ -123,7 +123,7 @@ class CacheFile extends CacheBase
|
|||
return false;
|
||||
}
|
||||
|
||||
if($modified_time > 0 && filemtime($cache_file) < $modified_timed)
|
||||
if($modified_time > 0 && filemtime($cache_file) < $modified_time)
|
||||
{
|
||||
FileHandler::removeFile($cache_file);
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue