WP DSGVO Tools - Version 1.4.1

Version Description

  • Umlaute in den Betreffzeilen der Mails korrigiert
Download this release

Release Info

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

Code changes from version 1.4.0 to 1.4.1

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.3.8
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.0 =
78
  * bbPress Integration bei Datenauszug und L&ouml:schanfrage (nur Premium)
79
  * buddyPress Integration (Felder, Nachrichten) bei Datenauszug und L&ouml:schanfrage (nur Premium)
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
 
75
  == Changelog ==
76
 
77
+ = 1.4.1 =
78
+ * Umlaute in den Betreffzeilen der Mails korrigiert
79
+
80
  = 1.4.0 =
81
  * bbPress Integration bei Datenauszug und L&ouml:schanfrage (nur Premium)
82
  * buddyPress Integration (Felder, Nachrichten) bei Datenauszug und L&ouml:schanfrage (nur Premium)
includes/models/unsubscriber.php CHANGED
@@ -97,7 +97,7 @@ Class SPDSGVOUnsubscriber extends SPDSGVOModel {
97
  $email = SPDSGVOMail::init()
98
  ->to($this->email)
99
  ->from(SPDSGVOSettings::get('admin_email'))
100
- ->subject('Bestägigung der Datenlöschung: '. parse_url(home_url(), PHP_URL_HOST))
101
  ->beforeTemplate(SPDSGVO::pluginDir('includes/emails/header.html'))
102
  ->afterTemplate( SPDSGVO::pluginDir('includes/emails/footer.html'))
103
  ->template(SPDSGVO::pluginDir('includes/emails/super-unsubscribe.html'), array(
97
  $email = SPDSGVOMail::init()
98
  ->to($this->email)
99
  ->from(SPDSGVOSettings::get('admin_email'))
100
+ ->subject('Bestgigung der Datenlschung: '. parse_url(home_url(), PHP_URL_HOST))
101
  ->beforeTemplate(SPDSGVO::pluginDir('includes/emails/header.html'))
102
  ->afterTemplate( SPDSGVO::pluginDir('includes/emails/footer.html'))
103
  ->template(SPDSGVO::pluginDir('includes/emails/super-unsubscribe.html'), array(
public/css/sp-dsgvo-public.css CHANGED
@@ -583,6 +583,8 @@ input[name="gdpr-cb"] {
583
 
584
  label[for="gdpr-cb"] {
585
  display: inline;
 
 
586
  }
587
 
588
  p.notice {
583
 
584
  label[for="gdpr-cb"] {
585
  display: inline;
586
+ position: relative;
587
+ left: 0px;
588
  }
589
 
590
  p.notice {
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.0
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.0');
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.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
  die();
29
  }
30
 
31
+ define('sp_dsgvo_VERSION', '1.4.1');
32
  define('sp_dsgvo_NAME', 'sp-dsgvo');
33
 
34
  /**