Version Description
Download this release
Release Info
Developer | sstoqnov |
Plugin | SG Optimizer |
Version | 5.7.1 |
Comparing to | |
See all releases |
Code changes from version 5.7.0 to 5.7.1
- core/Helper/Helper.php +1 -1
- readme.txt +3 -0
- sg-cachepress.php +2 -2
core/Helper/Helper.php
CHANGED
@@ -52,7 +52,7 @@ class Helper {
|
|
52 |
new Rest();
|
53 |
|
54 |
// Init the supercacher.
|
55 |
-
new Supercacher();
|
56 |
|
57 |
// Init the memcacher.
|
58 |
new Memcache();
|
52 |
new Rest();
|
53 |
|
54 |
// Init the supercacher.
|
55 |
+
$this->supercacher = new Supercacher();
|
56 |
|
57 |
// Init the memcacher.
|
58 |
new Memcache();
|
readme.txt
CHANGED
@@ -215,6 +215,9 @@ Our plugin uses a cookie in order to function properly. It does not store person
|
|
215 |
|
216 |
== Changelog ==
|
217 |
|
|
|
|
|
|
|
218 |
= Version 5.7.0 =
|
219 |
* Full-page Caching on CloudFlare
|
220 |
* Web Fonts Optimization
|
215 |
|
216 |
== Changelog ==
|
217 |
|
218 |
+
= Version 5.7.1 =
|
219 |
+
* Fixed bug with clearing cache from helper function
|
220 |
+
|
221 |
= Version 5.7.0 =
|
222 |
* Full-page Caching on CloudFlare
|
223 |
* Web Fonts Optimization
|
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.7.
|
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.7.
|
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.7.1
|
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.7.1' );
|
35 |
}
|
36 |
|
37 |
// Define slug constant.
|