summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
221386e)
* wp-content/themes/webkit/nightly.php:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@193392
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2015-12-03 Jonathan Davis <jond@apple.com>
+
+ Fixed cache logic so download data is correctly available.
+
+ * wp-content/themes/webkit/nightly.php:
+
2015-12-03 Timothy Hatcher <timothy@apple.com>
Add some missing redirects for directories of the old site.
2015-12-03 Timothy Hatcher <timothy@apple.com>
Add some missing redirects for directories of the old site.
$type = $types[0];
$cachekey = 'nightly_download_' . $type;
$type = $types[0];
$cachekey = 'nightly_download_' . $type;
- if ( is_super_cache_enabled() || false !== ( $cached = get_transient($cachekey) ) )
+ if ( false !== ( $cached = get_transient($cachekey) ) )
return json_decode($cached);
$url = sprintf(WEBKIT_NIGHTLY_ARCHIVE_URL, $type);
return json_decode($cached);
$url = sprintf(WEBKIT_NIGHTLY_ARCHIVE_URL, $type);