Version Description
- Fix: In some cases call to undefined function is_plugin_active() shows, it is fixed now by replacing it with a check for class_exist in CURCY and WOOCS plugins.
Download this release
Release Info
Developer | adeelkhan |
Plugin | Breeze – WordPress Cache Plugin |
Version | 2.0.7 |
Comparing to | |
See all releases |
Code changes from version 2.0.6 to 2.0.7
- breeze.php +2 -2
- inc/cache/config-cache.php +3 -3
- readme.txt +6 -1
breeze.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Breeze
|
4 |
* Description: Breeze is a WordPress cache plugin with extensive options to speed up your website. All the options including Varnish Cache are compatible with Cloudways hosting.
|
5 |
-
* Version: 2.0.
|
6 |
* Text Domain: breeze
|
7 |
* Domain Path: /languages
|
8 |
* Author: Cloudways
|
@@ -37,7 +37,7 @@ if ( ! defined( 'BREEZE_PLUGIN_DIR' ) ) {
|
|
37 |
define( 'BREEZE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
38 |
}
|
39 |
if ( ! defined( 'BREEZE_VERSION' ) ) {
|
40 |
-
define( 'BREEZE_VERSION', '2.0.
|
41 |
}
|
42 |
if ( ! defined( 'BREEZE_SITEURL' ) ) {
|
43 |
define( 'BREEZE_SITEURL', get_site_url() );
|
2 |
/**
|
3 |
* Plugin Name: Breeze
|
4 |
* Description: Breeze is a WordPress cache plugin with extensive options to speed up your website. All the options including Varnish Cache are compatible with Cloudways hosting.
|
5 |
+
* Version: 2.0.7
|
6 |
* Text Domain: breeze
|
7 |
* Domain Path: /languages
|
8 |
* Author: Cloudways
|
37 |
define( 'BREEZE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
38 |
}
|
39 |
if ( ! defined( 'BREEZE_VERSION' ) ) {
|
40 |
+
define( 'BREEZE_VERSION', '2.0.7' );
|
41 |
}
|
42 |
if ( ! defined( 'BREEZE_SITEURL' ) ) {
|
43 |
define( 'BREEZE_SITEURL', get_site_url() );
|
inc/cache/config-cache.php
CHANGED
@@ -216,8 +216,8 @@ class Breeze_ConfigCache {
|
|
216 |
|
217 |
// CURCY - WooCommerce Multi Currency Premium.
|
218 |
if (
|
219 |
-
|
220 |
-
|
221 |
) {
|
222 |
if ( empty( $wmc_settings ) ) {
|
223 |
// if $wmc_settings is empty, we will check again.
|
@@ -243,7 +243,7 @@ class Breeze_ConfigCache {
|
|
243 |
// WOOCS - WooCommerce Currency Switcher
|
244 |
$woocs_is_active = false;
|
245 |
if (
|
246 |
-
|
247 |
) {
|
248 |
$woocs_is_active = true;
|
249 |
}
|
216 |
|
217 |
// CURCY - WooCommerce Multi Currency Premium.
|
218 |
if (
|
219 |
+
class_exists( 'WOOMULTI_CURRENCY' ) ||
|
220 |
+
class_exists( 'WOOMULTI_CURRENCY_F')
|
221 |
) {
|
222 |
if ( empty( $wmc_settings ) ) {
|
223 |
// if $wmc_settings is empty, we will check again.
|
243 |
// WOOCS - WooCommerce Currency Switcher
|
244 |
$woocs_is_active = false;
|
245 |
if (
|
246 |
+
class_exists( 'WOOCS_STARTER' )
|
247 |
) {
|
248 |
$woocs_is_active = true;
|
249 |
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Cloudways
|
|
3 |
Tags: cache,caching, performance, wp-cache, cdn, combine, compress, speed plugin, database cache,gzip, http compression, js cache, minify, optimize, page cache, performance, speed, expire headers
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 6.0
|
6 |
-
Stable tag: 2.0.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -145,6 +145,11 @@ Using Gzip, Breeze compresses the request files, further reducing the size of th
|
|
145 |
|
146 |
== Changelog ==
|
147 |
|
|
|
|
|
|
|
|
|
|
|
148 |
= 2.0.6 =
|
149 |
|
150 |
* Fix: Overwrites the TimeZone To UTC of The Events Calendar plugin.
|
3 |
Tags: cache,caching, performance, wp-cache, cdn, combine, compress, speed plugin, database cache,gzip, http compression, js cache, minify, optimize, page cache, performance, speed, expire headers
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 6.0
|
6 |
+
Stable tag: 2.0.7
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
145 |
|
146 |
== Changelog ==
|
147 |
|
148 |
+
= 2.0.7 =
|
149 |
+
|
150 |
+
* Fix: In some cases call to undefined function is_plugin_active() shows, it is fixed now by replacing it with a check for class_exist in CURCY and WOOCS plugins.
|
151 |
+
|
152 |
+
|
153 |
= 2.0.6 =
|
154 |
|
155 |
* Fix: Overwrites the TimeZone To UTC of The Events Calendar plugin.
|