Version Description
- Fix directory creation handling (#221 @stevegrunwell)
Download this release
Release Info
| Developer | keycdn |
| Plugin | |
| Version | 1.7.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.7.0 to 1.7.1
- cache-enabler.php +2 -2
- inc/cache_enabler_disk.class.php +2 -2
- 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.7.
|
| 10 |
*/
|
| 11 |
|
| 12 |
/*
|
|
@@ -32,7 +32,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
| 32 |
}
|
| 33 |
|
| 34 |
// constants
|
| 35 |
-
define( 'CACHE_ENABLER_VERSION', '1.7.
|
| 36 |
define( 'CACHE_ENABLER_MIN_PHP', '5.6' );
|
| 37 |
define( 'CACHE_ENABLER_MIN_WP', '5.1' );
|
| 38 |
define( 'CACHE_ENABLER_FILE', __FILE__ );
|
| 6 |
Author: KeyCDN
|
| 7 |
Author URI: https://www.keycdn.com
|
| 8 |
License: GPLv2 or later
|
| 9 |
+
Version: 1.7.1
|
| 10 |
*/
|
| 11 |
|
| 12 |
/*
|
| 32 |
}
|
| 33 |
|
| 34 |
// constants
|
| 35 |
+
define( 'CACHE_ENABLER_VERSION', '1.7.1' );
|
| 36 |
define( 'CACHE_ENABLER_MIN_PHP', '5.6' );
|
| 37 |
define( 'CACHE_ENABLER_MIN_WP', '5.1' );
|
| 38 |
define( 'CACHE_ENABLER_FILE', __FILE__ );
|
inc/cache_enabler_disk.class.php
CHANGED
|
@@ -885,8 +885,8 @@ final class Cache_Enabler_Disk {
|
|
| 885 |
if ( $filesystem === false ) {
|
| 886 |
if ( is_wp_error( $wp_filesystem->errors ) && $wp_filesystem->errors->has_errors() ) {
|
| 887 |
throw new \RuntimeException(
|
| 888 |
-
$wp_filesystem->get_error_message,
|
| 889 |
-
( is_numeric( $
|
| 890 |
);
|
| 891 |
}
|
| 892 |
|
| 885 |
if ( $filesystem === false ) {
|
| 886 |
if ( is_wp_error( $wp_filesystem->errors ) && $wp_filesystem->errors->has_errors() ) {
|
| 887 |
throw new \RuntimeException(
|
| 888 |
+
$wp_filesystem->errors->get_error_message(),
|
| 889 |
+
( is_numeric( $wp_filesystem->errors->get_error_code() ) ) ? (int) $wp_filesystem->errors->get_error_code() : 0
|
| 890 |
);
|
| 891 |
}
|
| 892 |
|
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.7.0 =
|
| 59 |
* Update cache clearing for theme, plugin, post, and upgrade actions (#215 and #216)
|
| 60 |
* Update cache handling with cache keys (#211)
|
| 55 |
|
| 56 |
== Changelog ==
|
| 57 |
|
| 58 |
+
= 1.7.1 =
|
| 59 |
+
* Fix directory creation handling (#221 @stevegrunwell)
|
| 60 |
+
|
| 61 |
= 1.7.0 =
|
| 62 |
* Update cache clearing for theme, plugin, post, and upgrade actions (#215 and #216)
|
| 63 |
* Update cache handling with cache keys (#211)
|
