Version Description
- December 2018
- Bugfix for Jetpack (Props @jherve)
Download this release
Release Info
Developer | Ipstenu |
Plugin | Varnish HTTP Purge |
Version | 4.7.3 |
Comparing to | |
See all releases |
Code changes from version 4.7.2 to 4.7.3
- readme.txt +5 -1
- varnish-http-purge.php +2 -2
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Ipstenu, mikeschroder, techpriester, danielbachhuber
|
|
3 |
Tags: proxy, purge, cache, varnish, nginx
|
4 |
Requires at least: 4.7
|
5 |
Tested up to: 5.0
|
6 |
-
Stable tag: 4.7.
|
7 |
Requires PHP: 5.6
|
8 |
|
9 |
Automatically empty proxy cached content when your site is modified.
|
@@ -195,6 +195,10 @@ This plugin is installed by default for _all_ DreamPress installs on DreamHost,
|
|
195 |
|
196 |
== Changelog ==
|
197 |
|
|
|
|
|
|
|
|
|
198 |
= 4.7.2 =
|
199 |
* October 2018
|
200 |
* Fix regression with IP function name
|
3 |
Tags: proxy, purge, cache, varnish, nginx
|
4 |
Requires at least: 4.7
|
5 |
Tested up to: 5.0
|
6 |
+
Stable tag: 4.7.3
|
7 |
Requires PHP: 5.6
|
8 |
|
9 |
Automatically empty proxy cached content when your site is modified.
|
195 |
|
196 |
== Changelog ==
|
197 |
|
198 |
+
= 4.7.3 =
|
199 |
+
* December 2018
|
200 |
+
* Bugfix for Jetpack (Props @jherve)
|
201 |
+
|
202 |
= 4.7.2 =
|
203 |
* October 2018
|
204 |
* Fix regression with IP function name
|
varnish-http-purge.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Proxy Cache Purge
|
4 |
* Plugin URI: https://halfelf.org/plugins/varnish-http-purge/
|
5 |
* Description: Automatically empty cached pages when content on your site is modified.
|
6 |
-
* Version: 4.7.
|
7 |
* Author: Mika Epstein
|
8 |
* Author URI: https://halfelf.org/
|
9 |
* License: http://www.apache.org/licenses/LICENSE-2.0
|
@@ -102,7 +102,7 @@ class VarnishPurger {
|
|
102 |
public function admin_init() {
|
103 |
|
104 |
// If WordPress.com Master Bar is active, show the activity box.
|
105 |
-
if (
|
106 |
add_action( 'activity_box_end', array( $this, 'varnish_rightnow' ), 100 );
|
107 |
}
|
108 |
|
3 |
* Plugin Name: Proxy Cache Purge
|
4 |
* Plugin URI: https://halfelf.org/plugins/varnish-http-purge/
|
5 |
* Description: Automatically empty cached pages when content on your site is modified.
|
6 |
+
* Version: 4.7.3
|
7 |
* Author: Mika Epstein
|
8 |
* Author URI: https://halfelf.org/
|
9 |
* License: http://www.apache.org/licenses/LICENSE-2.0
|
102 |
public function admin_init() {
|
103 |
|
104 |
// If WordPress.com Master Bar is active, show the activity box.
|
105 |
+
if ( class_exists( 'Jetpack' ) && Jetpack::is_module_active( 'masterbar' ) ) {
|
106 |
add_action( 'activity_box_end', array( $this, 'varnish_rightnow' ), 100 );
|
107 |
}
|
108 |
|