Version Description
- Fix XML export error.
Download this release
Release Info
Developer | fclaussen |
Plugin | GDPR |
Version | 2.0.6 |
Comparing to | |
See all releases |
Code changes from version 2.0.5 to 2.0.6
- README.txt +4 -1
- gdpr.php +2 -2
- includes/class-gdpr.php +0 -3
README.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: gdpr, compliance, privacy, law, general data protection regulation
|
|
5 |
Requires at least: 4.7
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 4.9
|
8 |
-
Stable tag: 2.0.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -206,6 +206,9 @@ Activating this plugin does not guarantee that an organisation is successfully m
|
|
206 |
|
207 |
== Changelog ==
|
208 |
|
|
|
|
|
|
|
209 |
= 2.0.5 =
|
210 |
* Fix cookie toggle indicator set to on even if the user had previously untoggled it.
|
211 |
* Other minor fixes to the audit log reconsent.
|
5 |
Requires at least: 4.7
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 4.9
|
8 |
+
Stable tag: 2.0.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
206 |
|
207 |
== Changelog ==
|
208 |
|
209 |
+
= 2.0.6 =
|
210 |
+
* Fix XML export error.
|
211 |
+
|
212 |
= 2.0.5 =
|
213 |
* Fix cookie toggle indicator set to on even if the user had previously untoggled it.
|
214 |
* Other minor fixes to the audit log reconsent.
|
gdpr.php
CHANGED
@@ -16,7 +16,7 @@
|
|
16 |
* Plugin Name: GDPR
|
17 |
* Plugin URI: https://trewknowledge.com
|
18 |
* Description: This plugin is meant to assist a Controller, Data Processor, and Data Protection Officer (DPO) with efforts to meet the obligations and rights enacted under the GDPR.
|
19 |
-
* Version: 2.0.
|
20 |
* Author: Trew Knowledge
|
21 |
* Author URI: https://trewknowledge.com
|
22 |
* License: GPL-2.0+
|
@@ -35,7 +35,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
35 |
* Start at version 1.0.0 and use SemVer - https://semver.org
|
36 |
* Rename this for your plugin and update it as you release new versions.
|
37 |
*/
|
38 |
-
define( 'GDPR_VERSION', '2.0.
|
39 |
|
40 |
/**
|
41 |
* The code that runs during plugin activation.
|
16 |
* Plugin Name: GDPR
|
17 |
* Plugin URI: https://trewknowledge.com
|
18 |
* Description: This plugin is meant to assist a Controller, Data Processor, and Data Protection Officer (DPO) with efforts to meet the obligations and rights enacted under the GDPR.
|
19 |
+
* Version: 2.0.6
|
20 |
* Author: Trew Knowledge
|
21 |
* Author URI: https://trewknowledge.com
|
22 |
* License: GPL-2.0+
|
35 |
* Start at version 1.0.0 and use SemVer - https://semver.org
|
36 |
* Rename this for your plugin and update it as you release new versions.
|
37 |
*/
|
38 |
+
define( 'GDPR_VERSION', '2.0.6' );
|
39 |
|
40 |
/**
|
41 |
* The code that runs during plugin activation.
|
includes/class-gdpr.php
CHANGED
@@ -524,9 +524,6 @@ class GDPR {
|
|
524 |
$key = $dom->createElement( htmlspecialchars( $k ) );
|
525 |
$meta_data->appendChild( $key );
|
526 |
foreach ( $v as $value ) {
|
527 |
-
if ( is_serialized( $value ) ) {
|
528 |
-
$value = maybe_unserialize( $value );
|
529 |
-
}
|
530 |
$key->appendChild( $dom->createElement( 'item', htmlspecialchars( $value ) ) );
|
531 |
}
|
532 |
}
|
524 |
$key = $dom->createElement( htmlspecialchars( $k ) );
|
525 |
$meta_data->appendChild( $key );
|
526 |
foreach ( $v as $value ) {
|
|
|
|
|
|
|
527 |
$key->appendChild( $dom->createElement( 'item', htmlspecialchars( $value ) ) );
|
528 |
}
|
529 |
}
|