WP Super Cache - Version 1.7.7

Version Description

Download this release

Release Info

Developer donncha
Plugin Icon 128x128 WP Super Cache
Version 1.7.7
Comparing to
See all releases

Code changes from version 1.7.6 to 1.7.7

Files changed (2) hide show
  1. readme.txt +6 -3
  2. wp-cache.php +7 -1
readme.txt CHANGED
@@ -1,8 +1,8 @@
1
  # WP Super Cache #
2
  * Contributors: donncha, automattic
3
  * Tags: performance, caching, wp-cache, wp-super-cache, cache
4
- * Tested up to: 5.9
5
- * Stable tag: 1.7.6
6
  * Requires at least: 3.1
7
  * Requires PHP: 5.2.4
8
  * License: GPLv2 or later
@@ -269,6 +269,9 @@ Your theme is probably responsive which means it resizes the page to suit whatev
269
 
270
  ## Changelog ##
271
 
 
 
 
272
  ### 1.7.6 ###
273
  * Fix for PHP < 7.3
274
 
@@ -778,4 +781,4 @@ Your theme is probably responsive which means it resizes the page to suit whatev
778
 
779
 
780
  ## Upgrade Notice ##
781
- Bug fix release
1
  # WP Super Cache #
2
  * Contributors: donncha, automattic
3
  * Tags: performance, caching, wp-cache, wp-super-cache, cache
4
+ * Tested up to: 6.0
5
+ * Stable tag: 1.7.7
6
  * Requires at least: 3.1
7
  * Requires PHP: 5.2.4
8
  * License: GPLv2 or later
269
 
270
  ## Changelog ##
271
 
272
+ ### 1.7.7 ###
273
+ * Fixes to settings page
274
+
275
  ### 1.7.6 ###
276
  * Fix for PHP < 7.3
277
 
781
 
782
 
783
  ## Upgrade Notice ##
784
+ Fixes for settings page
wp-cache.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Super Cache
4
  Plugin URI: https://wordpress.org/plugins/wp-super-cache/
5
  Description: Very fast caching plugin for WordPress.
6
- Version: 1.7.6
7
  Author: Automattic
8
  Author URI: https://automattic.com/
9
  License: GPL2+
@@ -988,6 +988,7 @@ table.wpsc-settings-table {
988
  'wp_cache_preload_taxonomies',
989
  'wp_cache_preload_email_me',
990
  'wp_cache_preload_email_volume',
 
991
  'wp_cache_preload_posts'
992
  )
993
  );
@@ -997,6 +998,9 @@ table.wpsc-settings-table {
997
  wpsc_plugins_tab();
998
  break;
999
  case 'debug':
 
 
 
1000
  wpsc_render_partial(
1001
  'debug',
1002
  compact( 'wp_super_cache_debug', 'wp_cache_debug_log', 'wp_cache_debug_ip', 'cache_path', 'valid_nonce', 'wp_cache_config_file', 'wp_super_cache_comments', 'wp_super_cache_front_page_check', 'wp_super_cache_front_page_clear', 'wp_super_cache_front_page_text', 'wp_super_cache_front_page_notification', 'wp_super_cache_advanced_debug', 'wp_cache_debug_username' )
@@ -1052,6 +1056,7 @@ table.wpsc-settings-table {
1052
  'cache_schedule_interval',
1053
  'cache_time_interval',
1054
  'cache_gc_email_me',
 
1055
  'wp_cache_preload_on'
1056
  )
1057
  );
@@ -1072,6 +1077,7 @@ table.wpsc-settings-table {
1072
  'is_nginx' => $is_nginx,
1073
  'wp_cache_mod_rewrite' => $wp_cache_mod_rewrite,
1074
  'valid_nonce' => $valid_nonce,
 
1075
  'wp_super_cache_comments' => $wp_super_cache_comments,
1076
  )
1077
  );
3
  Plugin Name: WP Super Cache
4
  Plugin URI: https://wordpress.org/plugins/wp-super-cache/
5
  Description: Very fast caching plugin for WordPress.
6
+ Version: 1.7.7
7
  Author: Automattic
8
  Author URI: https://automattic.com/
9
  License: GPL2+
988
  'wp_cache_preload_taxonomies',
989
  'wp_cache_preload_email_me',
990
  'wp_cache_preload_email_volume',
991
+ 'currently_preloading',
992
  'wp_cache_preload_posts'
993
  )
994
  );
998
  wpsc_plugins_tab();
999
  break;
1000
  case 'debug':
1001
+ global $wp_super_cache_debug, $wp_cache_debug_log, $wp_cache_debug_ip, $wp_cache_debug_ip;
1002
+ global $wp_super_cache_front_page_text, $wp_super_cache_front_page_notification;
1003
+ global $wp_super_cache_advanced_debug, $wp_cache_debug_username, $wp_super_cache_front_page_clear;
1004
  wpsc_render_partial(
1005
  'debug',
1006
  compact( 'wp_super_cache_debug', 'wp_cache_debug_log', 'wp_cache_debug_ip', 'cache_path', 'valid_nonce', 'wp_cache_config_file', 'wp_super_cache_comments', 'wp_super_cache_front_page_check', 'wp_super_cache_front_page_clear', 'wp_super_cache_front_page_text', 'wp_super_cache_front_page_notification', 'wp_super_cache_advanced_debug', 'wp_cache_debug_username' )
1056
  'cache_schedule_interval',
1057
  'cache_time_interval',
1058
  'cache_gc_email_me',
1059
+ 'wp_cache_mobile_prefixes',
1060
  'wp_cache_preload_on'
1061
  )
1062
  );
1077
  'is_nginx' => $is_nginx,
1078
  'wp_cache_mod_rewrite' => $wp_cache_mod_rewrite,
1079
  'valid_nonce' => $valid_nonce,
1080
+ 'cache_path' => $cache_path,
1081
  'wp_super_cache_comments' => $wp_super_cache_comments,
1082
  )
1083
  );