Title: [193392] trunk/Websites/webkit.org
Revision
193392
Author
[email protected]
Date
2015-12-03 19:15:59 -0800 (Thu, 03 Dec 2015)

Log Message

Fixed cache logic so download data is correctly available.

* wp-content/themes/webkit/nightly.php:

Modified Paths

Diff

Modified: trunk/Websites/webkit.org/ChangeLog (193391 => 193392)


--- trunk/Websites/webkit.org/ChangeLog	2015-12-04 03:06:05 UTC (rev 193391)
+++ trunk/Websites/webkit.org/ChangeLog	2015-12-04 03:15:59 UTC (rev 193392)
@@ -1,3 +1,9 @@
+2015-12-03  Jonathan Davis  <[email protected]>
+
+        Fixed cache logic so download data is correctly available.
+
+        * wp-content/themes/webkit/nightly.php:
+
 2015-12-03  Timothy Hatcher  <[email protected]>
 
         Add some missing redirects for directories of the old site.

Modified: trunk/Websites/webkit.org/wp-content/themes/webkit/nightly.php (193391 => 193392)


--- trunk/Websites/webkit.org/wp-content/themes/webkit/nightly.php	2015-12-04 03:06:05 UTC (rev 193391)
+++ trunk/Websites/webkit.org/wp-content/themes/webkit/nightly.php	2015-12-04 03:15:59 UTC (rev 193392)
@@ -19,7 +19,7 @@
         $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 = "" $type);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to