GDPR - Version 2.1.2

Version Description

Download this release

Release Info

Developer fclaussen
Plugin Icon 128x128 GDPR
Version 2.1.2
Comparing to
See all releases

Code changes from version 2.1.1 to 2.1.2

.eslintrc.json DELETED
@@ -1,40 +0,0 @@
1
- {
2
- "extends": "wordpress",
3
- "parserOptions": {
4
- "ecmaVersion": 6,
5
- "ecmaFeatures": {
6
- "jsx": true,
7
- "arrowFunctions": true,
8
- "blockBindings": true,
9
- "classes": true,
10
- "defaultParams": true,
11
- "modules": true
12
- },
13
- "sourceType": "module"
14
- },
15
- "env": {
16
- "es6": true,
17
- "browser": true,
18
- "node": true,
19
- "commonjs": true,
20
- "jquery": true
21
- },
22
- "rules": {
23
- "camelcase": [1],
24
- "space-in-parens": [1, "always"],
25
- "no-trailing-spaces": [1],
26
- "spaced-comment": [0],
27
- "padded-blocks": [0],
28
- "prefer-template": [0],
29
- "max-len": [0],
30
- "no-else-return": [0],
31
- "func-names": [0],
32
- "object-shorthand": [0],
33
- "indent": ["error", "tab"],
34
- "space-before-function-paren": 0,
35
- "no-tabs": 0,
36
- "prefer-destructuring": 0,
37
- "no-undef": 0,
38
- "no-param-reassign": 0
39
- }
40
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 5.4
8
- Stable tag: 2.1.1
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
5
  Requires at least: 4.7
6
  Requires PHP: 5.6
7
  Tested up to: 5.4
8
+ Stable tag: 2.1.2
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
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.1.1
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.1.1' );
39
 
40
  /**
41
  * The minimum PHP version required to run the plugin.
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.1.2
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.1.2' );
39
 
40
  /**
41
  * The minimum PHP version required to run the plugin.
templates/privacy-preferences-modal.php CHANGED
@@ -84,7 +84,7 @@
84
  <?php endif; ?>
85
  </div>
86
  <div class="gdpr-cookies">
87
- <span><?php echo wp_kses( $type['description'], $args['allowed_html'] ); ?></span>
88
  </div>
89
  </div>
90
  <?php endforeach; ?>
84
  <?php endif; ?>
85
  </div>
86
  <div class="gdpr-cookies">
87
+ <span><?php echo wp_kses( $gdpr_type['description'], $args['allowed_html'] ); ?></span>
88
  </div>
89
  </div>
90
  <?php endforeach; ?>