mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-24 07:26: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
|
if($time !== false
|
||||||
&& (time() - static::CACHE_TIMEOUT < $time)
|
&& (time() - static::CACHE_TIMEOUT < $time)
|
||||||
&& (!defined('DEBUG') || DEBUG !== true)){
|
&& (!defined('DEBUG') || DEBUG !== true)){
|
||||||
$cachable = array();
|
$cached = array();
|
||||||
$cachable = $this->cache->loadData();
|
$cached = $this->cache->loadData();
|
||||||
$this->items = $cachable["items"];
|
$this->items = $cached["items"];
|
||||||
$this->extraInfos = $cachable["extraInfos"];
|
$this->extraInfos = $cached["extraInfos"];
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user