Version Description
- September 2018
- Bugfix to correct footer output. :facepalm: No broken functionality.
Download this release
Release Info
Developer | Ipstenu |
Plugin | Varnish HTTP Purge |
Version | 4.6.5 |
Comparing to | |
See all releases |
Code changes from version 4.6.4 to 4.6.5
- readme.txt +5 -1
- settings.php +2 -1
- varnish-http-purge.php +1 -1
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Ipstenu, mikeschroder, techpriester, danielbachhuber
|
|
3 |
Tags: varnish, purge, cache
|
4 |
Requires at least: 4.7
|
5 |
Tested up to: 4.9
|
6 |
-
Stable tag: 4.6.
|
7 |
Requires PHP: 5.6
|
8 |
|
9 |
Automatically empty Varnish Cache when content on your site is modified.
|
@@ -188,6 +188,10 @@ This plugin is installed by default for _all_ DreamPress installs on DreamHost,
|
|
188 |
|
189 |
== Changelog ==
|
190 |
|
|
|
|
|
|
|
|
|
191 |
= 4.6.4 =
|
192 |
|
193 |
* September 2018
|
3 |
Tags: varnish, purge, cache
|
4 |
Requires at least: 4.7
|
5 |
Tested up to: 4.9
|
6 |
+
Stable tag: 4.6.5
|
7 |
Requires PHP: 5.6
|
8 |
|
9 |
Automatically empty Varnish Cache when content on your site is modified.
|
188 |
|
189 |
== Changelog ==
|
190 |
|
191 |
+
= 4.6.5 =
|
192 |
+
* September 2018
|
193 |
+
* Bugfix to correct footer output. :facepalm: No broken functionality.
|
194 |
+
|
195 |
= 4.6.4 =
|
196 |
|
197 |
* September 2018
|
settings.php
CHANGED
@@ -502,9 +502,10 @@ class VarnishStatus {
|
|
502 |
$review_url,
|
503 |
$review_url
|
504 |
);
|
|
|
505 |
}
|
506 |
|
507 |
-
return $
|
508 |
}
|
509 |
|
510 |
}
|
502 |
$review_url,
|
503 |
$review_url
|
504 |
);
|
505 |
+
$text = $footer_text;
|
506 |
}
|
507 |
|
508 |
+
return $text;
|
509 |
}
|
510 |
|
511 |
}
|
varnish-http-purge.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Varnish HTTP 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.6.
|
7 |
* Author: Mika Epstein
|
8 |
* Author URI: https://halfelf.org/
|
9 |
* License: http://www.apache.org/licenses/LICENSE-2.0
|
3 |
* Plugin Name: Varnish HTTP 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.6.5
|
7 |
* Author: Mika Epstein
|
8 |
* Author URI: https://halfelf.org/
|
9 |
* License: http://www.apache.org/licenses/LICENSE-2.0
|