Hyper Cache - Version 2.1.3

Version Description

Download this release

Release Info

Developer satollo
Plugin Icon wp plugin Hyper Cache
Version 2.1.3
Comparing to
See all releases

Code changes from version 2.1.2 to 2.1.3

Files changed (4) hide show
  1. advanced-cache.php +5 -0
  2. options.php +4 -1
  3. plugin.php +1 -1
  4. readme.txt +2 -2
advanced-cache.php CHANGED
@@ -123,6 +123,11 @@ function hyper_cache_callback($buffer)
123
  return $buffer;
124
  }
125
 
 
 
 
 
 
126
  $buffer = trim($buffer);
127
 
128
  // Can be a trackback or other things without a body. We do not cache them, WP needs to get those calls.
123
  return $buffer;
124
  }
125
 
126
+ if (is_feed() && !$hyper_cache_feed)
127
+ {
128
+ return $buffer;
129
+ }
130
+
131
  $buffer = trim($buffer);
132
 
133
  // Can be a trackback or other things without a body. We do not cache them, WP needs to get those calls.
options.php CHANGED
@@ -92,6 +92,7 @@ if ($installed && isset($_POST['save']))
92
  $buffer .= '$hyper_cache_get = ' . ($options['get']?'true':'false') . ";\n";
93
  $buffer .= '$hyper_cache_redirects = ' . ($options['redirects']?'true':'false') . ";\n";
94
  $buffer .= '$hyper_cache_mobile = ' . ($options['mobile']?'true':'false') . ";\n";
 
95
  //$buffer .= '$hyper_cache_folder = \'' . $options['folder'] . "';\n";
96
  if (function_exists('gzencode'))
97
  {
@@ -187,7 +188,9 @@ else
187
  <?php echo $hyper_labels['expire_type_desc']; ?>
188
  </td>
189
  </tr>
190
-
 
 
191
  <tr valign="top">
192
  <?php hyper_field_checkbox('compress', $hyper_labels['compress_html'], $hyper_labels['compress_html_desc']); ?>
193
  </tr>
92
  $buffer .= '$hyper_cache_get = ' . ($options['get']?'true':'false') . ";\n";
93
  $buffer .= '$hyper_cache_redirects = ' . ($options['redirects']?'true':'false') . ";\n";
94
  $buffer .= '$hyper_cache_mobile = ' . ($options['mobile']?'true':'false') . ";\n";
95
+ $buffer .= '$hyper_cache_feed = ' . ($options['feed']?'true':'false') . ";\n";
96
  //$buffer .= '$hyper_cache_folder = \'' . $options['folder'] . "';\n";
97
  if (function_exists('gzencode'))
98
  {
188
  <?php echo $hyper_labels['expire_type_desc']; ?>
189
  </td>
190
  </tr>
191
+ <tr valign="top">
192
+ <?php hyper_field_checkbox('feed', 'Cache the feeds?'); ?>
193
+ </tr>
194
  <tr valign="top">
195
  <?php hyper_field_checkbox('compress', $hyper_labels['compress_html'], $hyper_labels['compress_html_desc']); ?>
196
  </tr>
plugin.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Hyper Cache
4
  Plugin URI: http://www.satollo.com/english/wordpress/hyper-cache
5
  Description: Hyper Cache is an extremely aggressive cache for WordPress even for mobile blogs. After an upgrade, DEACTIVATE, REACTIVATE and RECONFIGURE. ALWAYS!
6
- Version: 2.1.2
7
  Author: Satollo
8
  Author URI: http://www.satollo.com
9
  Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
3
  Plugin Name: Hyper Cache
4
  Plugin URI: http://www.satollo.com/english/wordpress/hyper-cache
5
  Description: Hyper Cache is an extremely aggressive cache for WordPress even for mobile blogs. After an upgrade, DEACTIVATE, REACTIVATE and RECONFIGURE. ALWAYS!
6
+ Version: 2.1.3
7
  Author: Satollo
8
  Author URI: http://www.satollo.com
9
  Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
readme.txt CHANGED
@@ -1,8 +1,8 @@
1
  === Hyper Cache ===
2
- Tags: cache,chaching
3
  Requires at least: 2.1
4
  Tested up to: 2.6.3
5
- Stable tag: 2.1.2
6
  Donate link: http://www.satollo.com/english/donate
7
  Contributors: satollo,momo360modena
8
 
1
  === Hyper Cache ===
2
+ Tags: cache,chaching,speed,performance,super cache,wp cache
3
  Requires at least: 2.1
4
  Tested up to: 2.6.3
5
+ Stable tag: 2.1.3
6
  Donate link: http://www.satollo.com/english/donate
7
  Contributors: satollo,momo360modena
8