mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-22 22:46:53 +00:00
rename $cachable to $cached in setDatas()
This commit is contained in:
parent
15d742e938
commit
84fe4f6b40
@ -155,10 +155,10 @@ abstract class BridgeAbstract implements BridgeInterface {
|
||||
if($time !== false
|
||||
&& (time() - static::CACHE_TIMEOUT < $time)
|
||||
&& (!defined('DEBUG') || DEBUG !== true)){
|
||||
$cachable = array();
|
||||
$cachable = $this->cache->loadData();
|
||||
$this->items = $cachable["items"];
|
||||
$this->extraInfos = $cachable["extraInfos"];
|
||||
$cached = array();
|
||||
$cached = $this->cache->loadData();
|
||||
$this->items = $cached["items"];
|
||||
$this->extraInfos = $cached["extraInfos"];
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user