Version Description
- Fix requirements check (#285)
Download this release
Release Info
Developer | keycdn |
Plugin | Cache Enabler – WordPress Cache |
Version | 1.8.1 |
Comparing to | |
See all releases |
Code changes from version 1.8.0 to 1.8.1
- cache-enabler.php +1 -1
- constants.php +1 -1
- inc/cache_enabler.class.php +1 -1
- readme.txt +3 -0
cache-enabler.php
CHANGED
@@ -6,7 +6,7 @@ Description: Simple and fast WordPress caching plugin.
|
|
6 |
Author: KeyCDN
|
7 |
Author URI: https://www.keycdn.com
|
8 |
License: GPLv2 or later
|
9 |
-
Version: 1.8.
|
10 |
*/
|
11 |
|
12 |
/*
|
6 |
Author: KeyCDN
|
7 |
Author URI: https://www.keycdn.com
|
8 |
License: GPLv2 or later
|
9 |
+
Version: 1.8.1
|
10 |
*/
|
11 |
|
12 |
/*
|
constants.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
*/
|
7 |
|
8 |
$cache_enabler_constants = array(
|
9 |
-
'CACHE_ENABLER_VERSION' => '1.8.
|
10 |
'CACHE_ENABLER_MIN_PHP' => '5.6',
|
11 |
'CACHE_ENABLER_MIN_WP' => '5.5',
|
12 |
'CACHE_ENABLER_DIR' => __DIR__,
|
6 |
*/
|
7 |
|
8 |
$cache_enabler_constants = array(
|
9 |
+
'CACHE_ENABLER_VERSION' => '1.8.1',
|
10 |
'CACHE_ENABLER_MIN_PHP' => '5.6',
|
11 |
'CACHE_ENABLER_MIN_WP' => '5.5',
|
12 |
'CACHE_ENABLER_DIR' => __DIR__,
|
inc/cache_enabler.class.php
CHANGED
@@ -2288,7 +2288,7 @@ final class Cache_Enabler {
|
|
2288 |
'<strong>Cache Enabler</strong>',
|
2289 |
'<code>' . CACHE_ENABLER_INDEX_FILE . '</code>',
|
2290 |
'<code>CACHE_ENABLER_INDEX_FILE</code>',
|
2291 |
-
'<code>wp-config.php</code>'
|
2292 |
)
|
2293 |
);
|
2294 |
}
|
2288 |
'<strong>Cache Enabler</strong>',
|
2289 |
'<code>' . CACHE_ENABLER_INDEX_FILE . '</code>',
|
2290 |
'<code>CACHE_ENABLER_INDEX_FILE</code>',
|
2291 |
+
'<code>wp-config.php</code>'
|
2292 |
)
|
2293 |
);
|
2294 |
}
|
readme.txt
CHANGED
@@ -55,6 +55,9 @@ Cache Enabler captures page contents and saves it as a static HTML file on the s
|
|
55 |
|
56 |
== Changelog ==
|
57 |
|
|
|
|
|
|
|
58 |
= 1.8.0 =
|
59 |
* Update `advanced-cache.php` drop-in file handling to improve reliability and compatibility (#283 and #260)
|
60 |
* Update settings file to be deleted before the `home` option is updated to prevent a leftover settings file (#279)
|
55 |
|
56 |
== Changelog ==
|
57 |
|
58 |
+
= 1.8.1 =
|
59 |
+
* Fix requirements check (#285)
|
60 |
+
|
61 |
= 1.8.0 =
|
62 |
* Update `advanced-cache.php` drop-in file handling to improve reliability and compatibility (#283 and #260)
|
63 |
* Update settings file to be deleted before the `home` option is updated to prevent a leftover settings file (#279)
|