Move Global Functions - Part 3

- Replaced every CACHE definition
- Moved check_url to App->checkURL()
- Removed unused definition "ZCURL_TIMEOUT"
This commit is contained in:
Philipp Holzer
2018-10-20 18:19:55 +02:00
parent ec9f1563f9
commit 4392858662
16 changed files with 43 additions and 70 deletions

View File

@@ -120,9 +120,9 @@ class OEmbed
'content' => $json_string,
'created' => DateTimeFormat::utcNow()
], true);
$cache_ttl = CACHE_DAY;
$cache_ttl = Cache::DAY;
} else {
$cache_ttl = CACHE_FIVE_MINUTES;
$cache_ttl = Cache::FIVE_MINUTES;
}
Cache::set($cache_key, $json_string, $cache_ttl);