Skip to content

Commit 7dabd61

Browse files
committed
PLUGINS-6344 a new fix for reset cache issue
1 parent ca28d36 commit 7dabd61

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
== Changelog ==
2+
= 7.0.7 - Jan 29, 2026 =
3+
- **Plugin code improvements for better security. Ecwid ecommerce shopping cart plugin update recommended.**
4+
25
= 7.0.6 - Jan 29, 2026 =
36
- **Plugin code improvements for better security. Ecwid ecommerce shopping cart plugin update recommended.**
47

ecwid-shopping-cart.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Description: Ecwid by Lightspeed is a full-featured shopping cart. It can be easily integrated with any Wordpress blog and takes less than 5 minutes to set up.
66
Text Domain: ecwid-shopping-cart
77
Author: Ecwid Ecommerce
8-
Version: 7.0.6
8+
Version: 7.0.7
99
Author URI: https://go.lightspeedhq.com/ecwid-site
1010
License: GPLv2 or later
1111
*/
@@ -1833,7 +1833,7 @@ function ecwid_clear_all_cache()
18331833

18341834
if ( array_key_exists( $key, $_GET ) ) {
18351835

1836-
if ( isset( $_GET['_wpnonce'] ) && ! wp_verify_nonce( wp_unslash( $_GET['_wpnonce'] ), $key ) ) {
1836+
if ( ! isset( $_GET['_wpnonce'] ) || ! wp_verify_nonce( wp_unslash( $_GET['_wpnonce'] ), $key ) ) {
18371837
return;
18381838
}
18391839

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ License: GPLv2 or later
55
License URI: https://www.gnu.org/licenses/gpl-2.0.html
66
Requires at least: 4.4
77
Tested up to: 6.9
8-
Stable tag: 7.0.6
8+
Stable tag: 7.0.7
99

1010
Powerful, easy to use ecommerce shopping cart for WordPress. Sell on Facebook and Instagram. iPhone & Android apps. Superb support.
1111

@@ -152,6 +152,9 @@ You can use Ecwid’s built-in import tools to copy your store products from any
152152
* [Ecwid Help Center](http://help.ecwid.com "Ecwid Help")
153153

154154
== Changelog ==
155+
= 7.0.7 - Jan 29, 2026 =
156+
- **Plugin code improvements for better security. Ecwid ecommerce shopping cart plugin update recommended.**
157+
155158
= 7.0.6 - Jan 29, 2026 =
156159
- **Plugin code improvements for better security. Ecwid ecommerce shopping cart plugin update recommended.**
157160

0 commit comments

Comments
 (0)