mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-11 04:52:14 +09:00
$modified_timed -> $modified_time
잘못된 변수명 변경
This commit is contained in:
parent
ca0fb36fb8
commit
01c4a5e833
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(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);
|
FileHandler::removeFile($cache_file);
|
||||||
return false;
|
return false;
|
||||||
|
|
@ -123,7 +123,7 @@ class CacheFile extends CacheBase
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($modified_time > 0 && filemtime($cache_file) < $modified_timed)
|
if($modified_time > 0 && filemtime($cache_file) < $modified_time)
|
||||||
{
|
{
|
||||||
FileHandler::removeFile($cache_file);
|
FileHandler::removeFile($cache_file);
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue