12 lines
372 B
Diff
12 lines
372 B
Diff
|
--- a/PEAR/REST.php
|
||
|
+++ b/PEAR/REST.php
|
||
|
@@ -178,7 +178,7 @@
|
||
|
|
||
|
$cachettl = $this->config->get('cache_ttl');
|
||
|
// If cache is newer than $cachettl seconds, we use the cache!
|
||
|
- if (time() - $cacheid['age'] < $cachettl) {
|
||
|
+ if (is_array($cacheid) && time() - $cacheid['age'] < $cachettl) {
|
||
|
return $this->getCache($url);
|
||
|
}
|
||
|
|