WP DSGVO Tools - Version 2.1.2

Version Description

  • Bugfix Woocommerce Checkout Checkbox: Standardtext wird nun korrekt angezeigt.
Download this release

Release Info

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

Code changes from version 2.1.1 to 2.1.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.8
7
- Stable tag: 2.1.1
8
  Requires PHP: 5.6.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -77,6 +77,9 @@ WICHTIG: Vor der Installation bitte alle bisher aktivierten Cookie Notice Plugin
77
 
78
  == Changelog ==
79
 
 
 
 
80
  = 2.1.1 =
81
  * Änderung des TCPDF PDF Creator String da manche Virenscanner diesen als bedrohlich einstuften und dies zu Fehler beim Laden führte
82
  * Verbesserung des Cookie Popups
4
  Tags: gdpr, dsgvo, datenschutz, wordpress, compliance, data
5
  Requires at least: 3.0.1
6
  Tested up to: 4.9.8
7
+ Stable tag: 2.1.2
8
  Requires PHP: 5.6.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
77
 
78
  == Changelog ==
79
 
80
+ = 2.1.2 =
81
+ * Bugfix Woocommerce Checkout Checkbox: Standardtext wird nun korrekt angezeigt.
82
+
83
  = 2.1.1 =
84
  * Änderung des TCPDF PDF Creator String da manche Virenscanner diesen als bedrohlich einstuften und dies zu Fehler beim Laden führte
85
  * Verbesserung des Cookie Popups
includes/class-sp-dsgvo-settings.php CHANGED
@@ -172,6 +172,7 @@ class SPDSGVOSettings{
172
  'privacy_policy_hash' => '',
173
  'woo_show_privacy_checkbox' => '0',
174
  'woo_show_privacy_checkbox_register' => '0',
 
175
 
176
  /////////////////////////////////////
177
  // imprint
172
  'privacy_policy_hash' => '',
173
  'woo_show_privacy_checkbox' => '0',
174
  'woo_show_privacy_checkbox_register' => '0',
175
+ 'woo_privacy_text' => __('I have read and accepted the Privacy Policy.','shapepress-dsgvo'),
176
 
177
  /////////////////////////////////////
178
  // imprint
public/class-sp-dsgvo-public.php CHANGED
@@ -598,13 +598,13 @@ class SPDSGVOPublic
598
  {
599
  $cbLabel = str_replace('PrivacyPolicyPlaceholder', __('Privacy policy','shapepress-dsgvo'), $cbLabel);
600
  }
601
-
 
 
602
  if (spdsgvoUseWpml())
603
  {
604
  $cbLabel = __('I have read and accepted the Privacy Policy.','shapepress-dsgvo');
605
  }
606
- */
607
- $cbLabel = SPDSGVOSettings::get('woo_privacy_text', '');
608
 
609
  /* i592995 */
610
 
598
  {
599
  $cbLabel = str_replace('PrivacyPolicyPlaceholder', __('Privacy policy','shapepress-dsgvo'), $cbLabel);
600
  }
601
+ */
602
+
603
+ $cbLabel = SPDSGVOSettings::get('woo_privacy_text', '');
604
  if (spdsgvoUseWpml())
605
  {
606
  $cbLabel = __('I have read and accepted the Privacy Policy.','shapepress-dsgvo');
607
  }
 
 
608
 
609
  /* i592995 */
610
 
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: 2.1.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', '2.1.1');
32
  define('sp_dsgvo_NAME', 'sp-dsgvo');
33
  /* i592995 */
34
  define('sp_dsgvo_URL', plugin_dir_url( __FILE__ ));
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: 2.1.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', '2.1.2');
32
  define('sp_dsgvo_NAME', 'sp-dsgvo');
33
  /* i592995 */
34
  define('sp_dsgvo_URL', plugin_dir_url( __FILE__ ));