diff --git a/README.md b/README.md index 766ffa08..6c73f4bf 100644 --- a/README.md +++ b/README.md @@ -167,6 +167,9 @@ Activating this plugin does not guarantee that an organisation is successfully m ## Changelog +##### 2.1.1 +* Tested with latest WordPress + ##### 2.1.0 * Wrapping checkboxes in labels so they stay in the same line. * Adding initial WPML and Polylang translation config file. diff --git a/README.txt b/README.txt index 35b20976..d6a387ce 100755 --- a/README.txt +++ b/README.txt @@ -4,8 +4,8 @@ Donate link: http://gdpr-wp.com/donate/ Tags: gdpr, compliance, privacy, law, general data protection regulation Requires at least: 4.7 Requires PHP: 5.6 -Tested up to: 4.9 -Stable tag: 2.1.0 +Tested up to: 5.3 +Stable tag: 2.1.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -206,6 +206,9 @@ Activating this plugin does not guarantee that an organisation is successfully m == Changelog == += 2.1.1 = +* Tested with latest WordPress + = 2.1.0 = * Wrapping checkboxes in labels so they stay in the same line. * Adding initial WPML and Polylang translation config file. diff --git a/gdpr.php b/gdpr.php index 249b3751..dc52fd8f 100755 --- a/gdpr.php +++ b/gdpr.php @@ -16,7 +16,7 @@ * Plugin Name: GDPR * Plugin URI: https://trewknowledge.com * 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. - * Version: 2.1.0 + * Version: 2.1.1 * Author: Trew Knowledge * Author URI: https://trewknowledge.com * License: GPL-2.0+ @@ -35,7 +35,7 @@ * Start at version 1.0.0 and use SemVer - https://semver.org * Rename this for your plugin and update it as you release new versions. */ -define( 'GDPR_VERSION', '2.1.0' ); +define( 'GDPR_VERSION', '2.1.1' ); /** * The minimum PHP version required to run the plugin. diff --git a/includes/class-gdpr.php b/includes/class-gdpr.php index f13a5c6c..77d32def 100755 --- a/includes/class-gdpr.php +++ b/includes/class-gdpr.php @@ -351,7 +351,7 @@ public static function get_consent_checkboxes( $consent_key = false ) { $required = ( isset( $consent['policy-page'] ) && $consent['policy-page'] ) ? 'required' : ''; $checked = ( isset( $sent_extras[ $key ] ) ) ? checked( $sent_extras[ $key ], 1, false ) : ''; echo '

' . - '

';