Version Description
- Fix: Change wp_redirect to wp_safe_redirect to fix redirect vulnerability of URL
Download this release
Release Info
Developer | adeelkhan |
Plugin | Breeze – WordPress Cache Plugin |
Version | 1.0.11 |
Comparing to | |
See all releases |
Code changes from version 1.0.10 to 1.0.11
- breeze.php +1 -1
- inc/breeze-configuration.php +2 -2
- readme.txt +7 -4
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: 1.0.
|
6 |
* Text Domain: breeze
|
7 |
* Domain Path: /languages
|
8 |
* Author: Cloudways
|
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: 1.0.11
|
6 |
* Text Domain: breeze
|
7 |
* Domain Path: /languages
|
8 |
* Author: Cloudways
|
inc/breeze-configuration.php
CHANGED
@@ -169,7 +169,7 @@ class Breeze_Configuration{
|
|
169 |
|
170 |
//return current page
|
171 |
if (!empty($_REQUEST['_wp_http_referer'])) {
|
172 |
-
|
173 |
exit;
|
174 |
}
|
175 |
}
|
@@ -238,7 +238,7 @@ class Breeze_Configuration{
|
|
238 |
|
239 |
//return current page
|
240 |
if (!empty($_REQUEST['_wp_http_referer'])) {
|
241 |
-
|
242 |
exit;
|
243 |
}
|
244 |
|
169 |
|
170 |
//return current page
|
171 |
if (!empty($_REQUEST['_wp_http_referer'])) {
|
172 |
+
wp_safe_redirect($_REQUEST['_wp_http_referer'].'&database-cleanup=success');
|
173 |
exit;
|
174 |
}
|
175 |
}
|
238 |
|
239 |
//return current page
|
240 |
if (!empty($_REQUEST['_wp_http_referer'])) {
|
241 |
+
wp_safe_redirect($_REQUEST['_wp_http_referer'].'&save-settings=success');
|
242 |
exit;
|
243 |
}
|
244 |
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Breeze - WordPress Cache Plugin ===
|
2 |
Contributors: Cloudways
|
3 |
-
Tags: cache,
|
4 |
Requires at least: 4.5
|
5 |
-
Tested up to:
|
6 |
-
Stable tag: 1.0.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -145,8 +145,11 @@ Using Gzip, Breeze compresses the request files, further reducing the size of th
|
|
145 |
|
146 |
== Changelog ==
|
147 |
|
|
|
|
|
|
|
148 |
= 1.0.10 =
|
149 |
-
* Add: Allow Purge Cache for Editors role
|
150 |
|
151 |
= 1.0.9 =
|
152 |
* Add: Option to move JS file to footer during minification
|
1 |
=== Breeze - WordPress Cache Plugin ===
|
2 |
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: 5.2.1
|
6 |
+
Stable tag: 1.0.11
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
145 |
|
146 |
== Changelog ==
|
147 |
|
148 |
+
= 1.0.11 =
|
149 |
+
* Fix: Change wp_redirect to wp_safe_redirect to fix redirect vulnerability of URL
|
150 |
+
|
151 |
= 1.0.10 =
|
152 |
+
* Add: Allow Purge Cache for Editors role.
|
153 |
|
154 |
= 1.0.9 =
|
155 |
* Add: Option to move JS file to footer during minification
|