iubenda Cookie Solution for GDPR - Version 2.4.3

Version Description

  • Fix field mapping in Cons forms
Download this release

Release Info

Developer iubenda
Plugin Icon 128x128 iubenda Cookie Solution for GDPR
Version 2.4.3
Comparing to
See all releases

Code changes from version 2.4.2 to 2.4.3

includes/settings.php CHANGED
@@ -1600,8 +1600,9 @@ class iubenda_Settings {
1600
  // format preferences data
1601
  if ( ! empty( $preferences_raw ) && is_array( $preferences_raw ) ) {
1602
  foreach ( $preferences_raw as $index => $data ) {
1603
- if ( ! empty( $data['field'] ) && ! empty( $data['value'] ) )
1604
  $preferences[ sanitize_key( $data['field'] ) ] = $data['value'];
 
1605
  }
1606
  }
1607
 
1600
  // format preferences data
1601
  if ( ! empty( $preferences_raw ) && is_array( $preferences_raw ) ) {
1602
  foreach ( $preferences_raw as $index => $data ) {
1603
+ if ( ! empty( $data['field'] ) && ( ! is_null( $data['value'] ) || ! "" == $data['value'] ) ) {
1604
  $preferences[ sanitize_key( $data['field'] ) ] = $data['value'];
1605
+ }
1606
  }
1607
  }
1608
 
iubenda_cookie_solution.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Cookie and Consent Solution for the GDPR & ePrivacy
4
  Plugin URI: https://www.iubenda.com
5
  Description: An All-in-One approach developed by iubenda, which includes functionalities of two powerful solutions that help to make your website GDPR and ePrivacy compliant.
6
- Version: 2.4.2
7
  Author: iubenda
8
  Author URI: https://www.iubenda.com
9
  License: MIT License
@@ -32,7 +32,7 @@ define( 'IUB_DEBUG', false );
32
  * iubenda final class.
33
  *
34
  * @class iubenda
35
- * @version 2.4.2
36
  */
37
  class iubenda {
38
 
@@ -62,7 +62,7 @@ class iubenda {
62
  )
63
  );
64
  public $base_url;
65
- public $version = '2.4.2';
66
  public $activation = array(
67
  'update_version' => 0,
68
  'update_notice' => true,
3
  Plugin Name: Cookie and Consent Solution for the GDPR & ePrivacy
4
  Plugin URI: https://www.iubenda.com
5
  Description: An All-in-One approach developed by iubenda, which includes functionalities of two powerful solutions that help to make your website GDPR and ePrivacy compliant.
6
+ Version: 2.4.3
7
  Author: iubenda
8
  Author URI: https://www.iubenda.com
9
  License: MIT License
32
  * iubenda final class.
33
  *
34
  * @class iubenda
35
+ * @version 2.4.3
36
  */
37
  class iubenda {
38
 
62
  )
63
  );
64
  public $base_url;
65
+ public $version = '2.4.3';
66
  public $activation = array(
67
  'update_version' => 0,
68
  'update_notice' => true,
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: cookies, cookie law, cookie policy, cookie banner, privacy policy, cookie
5
  Requires at least: 4.0
6
  Requires PHP: 5.2.4
7
  Tested up to: 5.7.0
8
- Stable tag: 2.4.2
9
  License: MIT License
10
  License URI: http://opensource.org/licenses/MIT
11
 
@@ -150,6 +150,9 @@ We will be very happy to receive feedback here: [Uservoice forum](https://suppor
150
 
151
  == Changelog ==
152
 
 
 
 
153
  = 2.4.2 =
154
  * Fix comptability with PHP 8.0.2
155
  * Update WP support to 5.7
@@ -505,6 +508,5 @@ We will be very happy to receive feedback here: [Uservoice forum](https://suppor
505
 
506
  == Upgrade Notice ==
507
 
508
- = 2.4.2 =
509
- * Fix comptability with PHP 8.0.2
510
- * Update WP support to 5.7
5
  Requires at least: 4.0
6
  Requires PHP: 5.2.4
7
  Tested up to: 5.7.0
8
+ Stable tag: 2.4.3
9
  License: MIT License
10
  License URI: http://opensource.org/licenses/MIT
11
 
150
 
151
  == Changelog ==
152
 
153
+ = 2.4.3 =
154
+ * Fix field mapping in Cons forms
155
+
156
  = 2.4.2 =
157
  * Fix comptability with PHP 8.0.2
158
  * Update WP support to 5.7
508
 
509
  == Upgrade Notice ==
510
 
511
+ = 2.4.3 =
512
+ * Fix field mapping in Cons forms