Version Description
- Fix for possible 500 error code
Download this release
Release Info
Developer | satollo |
Plugin | Hyper Cache |
Version | 3.2.8 |
Comparing to | |
See all releases |
Code changes from version 3.2.7 to 3.2.8
- plugin.php +10 -1
- readme.txt +5 -1
plugin.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Hyper Cache
|
5 |
Plugin URI: http://www.satollo.net/plugins/hyper-cache
|
6 |
Description: A easy to configure and efficient cache to increase the speed of your blog.
|
7 |
-
Version: 3.2.
|
8 |
Author: Stefano Lissa
|
9 |
Author URI: http://www.satollo.net
|
10 |
Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
|
@@ -676,3 +676,12 @@ function hyper_cache_sanitize_uri($uri) {
|
|
676 |
}
|
677 |
|
678 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
Plugin Name: Hyper Cache
|
5 |
Plugin URI: http://www.satollo.net/plugins/hyper-cache
|
6 |
Description: A easy to configure and efficient cache to increase the speed of your blog.
|
7 |
+
Version: 3.2.8
|
8 |
Author: Stefano Lissa
|
9 |
Author URI: http://www.satollo.net
|
10 |
Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
|
676 |
}
|
677 |
|
678 |
}
|
679 |
+
|
680 |
+
if (!function_exists('hyper_cache_sanitize_host')) {
|
681 |
+
|
682 |
+
function hyper_cache_sanitize_host($host) {
|
683 |
+
$host = preg_replace('|[^a-zA-Z0-9\.]+|', '', $host);
|
684 |
+
return strtolower($host);
|
685 |
+
}
|
686 |
+
|
687 |
+
}
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Tags: cache,performance,staticizer,apache,htaccess,tuning,speed,bandwidth,optimization,tidy,gzip,compression,server load,boost
|
3 |
Requires at least: 2.5
|
4 |
Tested up to: 4.7.5
|
5 |
-
Stable tag: 3.2.
|
6 |
Donate link: http://www.satollo.net/donations
|
7 |
Contributors: satollo
|
8 |
|
@@ -68,6 +68,10 @@ the [Hyper Cache official forum](http://www.satollo.net/forums/forum/hyper-cache
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
|
|
|
|
|
|
|
|
71 |
= 3.2.7 =
|
72 |
|
73 |
* Minor code review
|
2 |
Tags: cache,performance,staticizer,apache,htaccess,tuning,speed,bandwidth,optimization,tidy,gzip,compression,server load,boost
|
3 |
Requires at least: 2.5
|
4 |
Tested up to: 4.7.5
|
5 |
+
Stable tag: 3.2.8
|
6 |
Donate link: http://www.satollo.net/donations
|
7 |
Contributors: satollo
|
8 |
|
68 |
|
69 |
== Changelog ==
|
70 |
|
71 |
+
= 3.2.8 =
|
72 |
+
|
73 |
+
* Fix for possible 500 error code
|
74 |
+
|
75 |
= 3.2.7 =
|
76 |
|
77 |
* Minor code review
|