Version Description
Download this release
Release Info
Developer | sstoqnov |
Plugin | SG Optimizer |
Version | 5.6.4 |
Comparing to | |
See all releases |
Code changes from version 5.6.3 to 5.6.4
- core/Combinator/Css_Combinator.php +1 -1
- readme.txt +3 -0
- sg-cachepress.php +2 -2
core/Combinator/Css_Combinator.php
CHANGED
@@ -160,7 +160,7 @@ class Css_Combinator extends Abstract_Combinator {
|
|
160 |
);
|
161 |
|
162 |
// Bail if there are no registered styles.
|
163 |
-
if ( empty( $wp_styles
|
164 |
return;
|
165 |
}
|
166 |
|
160 |
);
|
161 |
|
162 |
// Bail if there are no registered styles.
|
163 |
+
if ( empty( $wp_styles->registered ) ) {
|
164 |
return;
|
165 |
}
|
166 |
|
readme.txt
CHANGED
@@ -208,6 +208,9 @@ Our plugin uses a cookie in order to function properly. It does not store person
|
|
208 |
|
209 |
== Changelog ==
|
210 |
|
|
|
|
|
|
|
211 |
= Version 5.6.3 =
|
212 |
* Better WP 5.5 support
|
213 |
* Improved log handling
|
208 |
|
209 |
== Changelog ==
|
210 |
|
211 |
+
= Version 5.6.4 =
|
212 |
+
* Fix error in CSS Combinator
|
213 |
+
|
214 |
= Version 5.6.3 =
|
215 |
* Better WP 5.5 support
|
216 |
* Improved log handling
|
sg-cachepress.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
* Plugin Name: SG Optimizer
|
11 |
* Plugin URI: https://siteground.com
|
12 |
* Description: This plugin will link your WordPress application with all the performance optimizations provided by SiteGround
|
13 |
-
* Version: 5.6.
|
14 |
* Author: SiteGround
|
15 |
* Author URI: https://www.siteground.com
|
16 |
* Text Domain: sg-cachepress
|
@@ -31,7 +31,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
31 |
|
32 |
// Define version constant.
|
33 |
if ( ! defined( __NAMESPACE__ . '\VERSION' ) ) {
|
34 |
-
define( __NAMESPACE__ . '\VERSION', '5.6.
|
35 |
}
|
36 |
|
37 |
// Define slug constant.
|
10 |
* Plugin Name: SG Optimizer
|
11 |
* Plugin URI: https://siteground.com
|
12 |
* Description: This plugin will link your WordPress application with all the performance optimizations provided by SiteGround
|
13 |
+
* Version: 5.6.4
|
14 |
* Author: SiteGround
|
15 |
* Author URI: https://www.siteground.com
|
16 |
* Text Domain: sg-cachepress
|
31 |
|
32 |
// Define version constant.
|
33 |
if ( ! defined( __NAMESPACE__ . '\VERSION' ) ) {
|
34 |
+
define( __NAMESPACE__ . '\VERSION', '5.6.4' );
|
35 |
}
|
36 |
|
37 |
// Define slug constant.
|