WP DSGVO Tools - Version 1.4.2

Version Description

  • Problem mit Cookie Notice behoben
Download this release

Release Info

Developer shapepress
Plugin Icon 128x128 WP DSGVO Tools
Version 1.4.2
Comparing to
See all releases

Code changes from version 1.4.1 to 1.4.2

Files changed (3) hide show
  1. README.txt +4 -1
  2. public/class-sp-dsgvo-public.php +1 -1
  3. sp-dsgvo.php +2 -2
README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://wp-dsgvo.eu
4
  Tags: gdpr, dsgvo, datenschutz, wordpress, compliance, data
5
  Requires at least: 3.0.1
6
  Tested up to: 4.9.5
7
- Stable tag: 1.4.1
8
  Requires PHP: 5.6.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -74,6 +74,9 @@ WICHTIG: Vor der Installation bitte alle bisher aktivierten Cookie Notice Plugin
74
 
75
  == Changelog ==
76
 
 
 
 
77
  = 1.4.1 =
78
  * Umlaute in den Betreffzeilen der Mails korrigiert
79
 
4
  Tags: gdpr, dsgvo, datenschutz, wordpress, compliance, data
5
  Requires at least: 3.0.1
6
  Tested up to: 4.9.5
7
+ Stable tag: 1.4.2
8
  Requires PHP: 5.6.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
74
 
75
  == Changelog ==
76
 
77
+ = 1.4.2 =
78
+ * Problem mit Cookie Notice behoben
79
+
80
  = 1.4.1 =
81
  * Umlaute in den Betreffzeilen der Mails korrigiert
82
 
public/class-sp-dsgvo-public.php CHANGED
@@ -130,7 +130,7 @@ class SPDSGVOPublic
130
  public function cookieNotice()
131
  {
132
  if (SPDSGVOSettings::get('display_cookie_notice') === '1') :
133
- if (hasUserGivenPermissionFor('cookies') === NULL) :
134
  ?>
135
  <div id="cookie-notice" role="banner"
136
  class="cn-<?= SPDSGVOSettings::get('cn_position') ?> <?= SPDSGVOSettings::get('cn_custom_css_container') !== '' ? SPDSGVOSettings::get('cn_custom_css_container'):'' ?>"
130
  public function cookieNotice()
131
  {
132
  if (SPDSGVOSettings::get('display_cookie_notice') === '1') :
133
+ if (hasUserGivenPermissionFor('cookies') === FALSE) :
134
  ?>
135
  <div id="cookie-notice" role="banner"
136
  class="cn-<?= SPDSGVOSettings::get('cn_position') ?> <?= SPDSGVOSettings::get('cn_custom_css_container') !== '' ? SPDSGVOSettings::get('cn_custom_css_container'):'' ?>"
sp-dsgvo.php CHANGED
@@ -16,7 +16,7 @@
16
  * Plugin Name: WP DSGVO Tools
17
  * Plugin URI: https://wp-dsgvo.eu
18
  * Description: WP DSGVO Tools helfen beim Erf&uuml;llen der Richtlinien der Datenschutzgrundverordnung (<a target="_blank" href="https://ico.org.uk/for-organisations/data-protection-reform/overview-of-the-gdpr/">DSGVO</a>), spezialisiert auf &Ouml;sterreich und Deutschland.
19
- * Version: 1.4.1
20
  * Author: Shapepress eU
21
  * Author URI: https://www.shapepress.com
22
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
@@ -28,7 +28,7 @@ if (! defined('WPINC')) {
28
  die();
29
  }
30
 
31
- define('sp_dsgvo_VERSION', '1.4.1');
32
  define('sp_dsgvo_NAME', 'sp-dsgvo');
33
 
34
  /**
16
  * Plugin Name: WP DSGVO Tools
17
  * Plugin URI: https://wp-dsgvo.eu
18
  * Description: WP DSGVO Tools helfen beim Erf&uuml;llen der Richtlinien der Datenschutzgrundverordnung (<a target="_blank" href="https://ico.org.uk/for-organisations/data-protection-reform/overview-of-the-gdpr/">DSGVO</a>), spezialisiert auf &Ouml;sterreich und Deutschland.
19
+ * Version: 1.4.2
20
  * Author: Shapepress eU
21
  * Author URI: https://www.shapepress.com
22
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
28
  die();
29
  }
30
 
31
+ define('sp_dsgvo_VERSION', '1.4.2');
32
  define('sp_dsgvo_NAME', 'sp-dsgvo');
33
 
34
  /**