Version Description
- Fix: Missing variable definition in frontend
Download this release
Release Info
Developer | dfactory |
Plugin | Cookie Notice by dFactory |
Version | 2.2.1 |
Comparing to | |
See all releases |
Code changes from version 2.2.0 to 2.2.1
- cookie-notice.php +3 -3
- includes/frontend.php +1 -0
- readme.txt +5 -2
cookie-notice.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Cookie Notice & Compliance for GDPR / CCPA
|
4 |
Description: Cookie Notice allows you to you elegantly inform users that your site uses cookies and helps you comply with GDPR, CCPA and other data privacy laws.
|
5 |
-
Version: 2.2.
|
6 |
Author: Hu-manity.co
|
7 |
Author URI: https://hu-manity.co/
|
8 |
Plugin URI: https://hu-manity.co/
|
@@ -29,7 +29,7 @@ if ( ! defined( 'ABSPATH' ) )
|
|
29 |
* Cookie Notice class.
|
30 |
*
|
31 |
* @class Cookie_Notice
|
32 |
-
* @version 2.2.
|
33 |
*/
|
34 |
class Cookie_Notice {
|
35 |
|
@@ -86,7 +86,7 @@ class Cookie_Notice {
|
|
86 |
'update_notice' => true,
|
87 |
'update_delay_date' => 0
|
88 |
),
|
89 |
-
'version' => '2.2.
|
90 |
);
|
91 |
private $deactivaion_url = '';
|
92 |
|
2 |
/*
|
3 |
Plugin Name: Cookie Notice & Compliance for GDPR / CCPA
|
4 |
Description: Cookie Notice allows you to you elegantly inform users that your site uses cookies and helps you comply with GDPR, CCPA and other data privacy laws.
|
5 |
+
Version: 2.2.1
|
6 |
Author: Hu-manity.co
|
7 |
Author URI: https://hu-manity.co/
|
8 |
Plugin URI: https://hu-manity.co/
|
29 |
* Cookie Notice class.
|
30 |
*
|
31 |
* @class Cookie_Notice
|
32 |
+
* @version 2.2.1
|
33 |
*/
|
34 |
class Cookie_Notice {
|
35 |
|
86 |
'update_notice' => true,
|
87 |
'update_delay_date' => 0
|
88 |
),
|
89 |
+
'version' => '2.2.1'
|
90 |
);
|
91 |
private $deactivaion_url = '';
|
92 |
|
includes/frontend.php
CHANGED
@@ -18,6 +18,7 @@ class Cookie_Notice_Frontend {
|
|
18 |
add_action( 'init', array( $this, 'init' ) );
|
19 |
|
20 |
$this->widget_url = '//cdn.hu-manity.co/hu-banner.min.js';
|
|
|
21 |
}
|
22 |
|
23 |
/**
|
18 |
add_action( 'init', array( $this, 'init' ) );
|
19 |
|
20 |
$this->widget_url = '//cdn.hu-manity.co/hu-banner.min.js';
|
21 |
+
$this->app_url = 'https://app.hu-manity.co';
|
22 |
}
|
23 |
|
24 |
/**
|
readme.txt
CHANGED
@@ -118,6 +118,9 @@ Yes! The plugin + web appliaction version includes technical compliance features
|
|
118 |
|
119 |
== Changelog ==
|
120 |
|
|
|
|
|
|
|
121 |
= 2.2.0 =
|
122 |
* New: Option to hide banner for logged in users (Compliance only)
|
123 |
|
@@ -397,5 +400,5 @@ Initial release
|
|
397 |
|
398 |
== Upgrade Notice ==
|
399 |
|
400 |
-
= 2.2.
|
401 |
-
*
|
118 |
|
119 |
== Changelog ==
|
120 |
|
121 |
+
= 2.2.1 =
|
122 |
+
* Fix: Missing variable definition in frontend
|
123 |
+
|
124 |
= 2.2.0 =
|
125 |
* New: Option to hide banner for logged in users (Compliance only)
|
126 |
|
400 |
|
401 |
== Upgrade Notice ==
|
402 |
|
403 |
+
= 2.2.1 =
|
404 |
+
* Fix: Missing variable definition in frontend
|