Version Description
- Fix: unsetting non existing array key in upgrade
Download this release
Release Info
Developer | RogierLankhorst |
Plugin | Complianz – GDPR/CCPA Cookie Consent |
Version | 6.3.6.1 |
Comparing to | |
See all releases |
Code changes from version 6.3.6 to 6.3.6.1
- complianz-gpdr.php +2 -2
- readme.txt +4 -1
- upgrade.php +3 -1
complianz-gpdr.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Complianz | GDPR/CCPA Cookie Consent
|
4 |
* Plugin URI: https://www.wordpress.org/plugins/complianz-gdpr
|
5 |
* Description: Complianz Privacy Suite for GDPR, CaCPA, DSVGO, AVG with a conditional cookie warning and customized cookie policy
|
6 |
-
* Version: 6.3.6
|
7 |
* Text Domain: complianz-gdpr
|
8 |
* Domain Path: /languages
|
9 |
* Author: Really Simple Plugins
|
@@ -139,7 +139,7 @@ if ( ! class_exists( 'COMPLIANZ' ) ) {
|
|
139 |
//for auto upgrade functionality
|
140 |
define( 'cmplz_plugin_free', plugin_basename( __FILE__ ) );
|
141 |
$debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? time() : '';
|
142 |
-
define( 'cmplz_version', '6.3.6' . $debug );
|
143 |
define( 'cmplz_plugin_file', __FILE__ );
|
144 |
}
|
145 |
|
3 |
* Plugin Name: Complianz | GDPR/CCPA Cookie Consent
|
4 |
* Plugin URI: https://www.wordpress.org/plugins/complianz-gdpr
|
5 |
* Description: Complianz Privacy Suite for GDPR, CaCPA, DSVGO, AVG with a conditional cookie warning and customized cookie policy
|
6 |
+
* Version: 6.3.6.1
|
7 |
* Text Domain: complianz-gdpr
|
8 |
* Domain Path: /languages
|
9 |
* Author: Really Simple Plugins
|
139 |
//for auto upgrade functionality
|
140 |
define( 'cmplz_plugin_free', plugin_basename( __FILE__ ) );
|
141 |
$debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? time() : '';
|
142 |
+
define( 'cmplz_version', '6.3.6.1' . $debug );
|
143 |
define( 'cmplz_plugin_file', __FILE__ );
|
144 |
}
|
145 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Requires at least: 4.9
|
|
6 |
License: GPL2
|
7 |
Requires PHP: 7.2
|
8 |
Tested up to: 6.1
|
9 |
-
Stable tag: 6.3.6
|
10 |
|
11 |
Configure your Cookie Banner, Cookie Consent and Cookie Policy with our Wizard and Cookie Scan. Supports GDPR, DSGVO, TTDSG, LGPD, POPIA, RGPD, CCPA/CPRA and PIPEDA.
|
12 |
|
@@ -175,6 +175,9 @@ The Brazilian General Data Protection Law is similar to the GDPR, the UK-GDPR it
|
|
175 |
With some custom CSS this is possible, but we do not consider a cookie wall to be GDPR compliant, so it's not actively supported. We do, however, have the option to create a Soft Cookie Wall. Which blocks interaction with the website, but dismissing remains a possibility.
|
176 |
|
177 |
== Changelog ==
|
|
|
|
|
|
|
178 |
= 6.3.6 =
|
179 |
* Fix: translatable strings, props @bonaldi
|
180 |
* Fix: only allow saving script center
|
6 |
License: GPL2
|
7 |
Requires PHP: 7.2
|
8 |
Tested up to: 6.1
|
9 |
+
Stable tag: 6.3.6.1
|
10 |
|
11 |
Configure your Cookie Banner, Cookie Consent and Cookie Policy with our Wizard and Cookie Scan. Supports GDPR, DSGVO, TTDSG, LGPD, POPIA, RGPD, CCPA/CPRA and PIPEDA.
|
12 |
|
175 |
With some custom CSS this is possible, but we do not consider a cookie wall to be GDPR compliant, so it's not actively supported. We do, however, have the option to create a Soft Cookie Wall. Which blocks interaction with the website, but dismissing remains a possibility.
|
176 |
|
177 |
== Changelog ==
|
178 |
+
= 6.3.6.1 =
|
179 |
+
* Fix: unsetting non existing array key in upgrade
|
180 |
+
|
181 |
= 6.3.6 =
|
182 |
* Fix: translatable strings, props @bonaldi
|
183 |
* Fix: only allow saving script center
|
upgrade.php
CHANGED
@@ -957,7 +957,9 @@ function cmplz_check_upgrade() {
|
|
957 |
|
958 |
$settings = get_option( 'complianz_options_settings', [] );
|
959 |
$settings['safe_mode'] = $settings['disable_cookie_block'] ?? false;
|
960 |
-
|
|
|
|
|
961 |
update_option( 'complianz_options_settings', $settings );
|
962 |
}
|
963 |
|
957 |
|
958 |
$settings = get_option( 'complianz_options_settings', [] );
|
959 |
$settings['safe_mode'] = $settings['disable_cookie_block'] ?? false;
|
960 |
+
if ( isset($settings['disable_cookie_block']) ) {
|
961 |
+
unset($settings['disable_cookie_block']);
|
962 |
+
}
|
963 |
update_option( 'complianz_options_settings', $settings );
|
964 |
}
|
965 |
|