Version Description
Download this release
Release Info
Developer | aytac |
Plugin | Cookiebot | GDPR Compliant Cookie Consent and Notice |
Version | 4.0.2 |
Comparing to | |
See all releases |
Code changes from version 4.0.1 to 4.0.2
- cookiebot.php +4 -4
- readme.txt +4 -1
- src/addons/Cookiebot_Addons.php +1 -1
- src/lib/Cookiebot_WP.php +1 -1
cookiebot.php
CHANGED
@@ -5,7 +5,7 @@ Plugin Name: Cookiebot | GDPR/CCPA Compliant Cookie Consent and Control
|
|
5 |
Plugin URI: https://cookiebot.com/
|
6 |
Description: Cookiebot is a cloud-driven solution that automatically controls cookies and trackers, enabling full GDPR/ePrivacy and CCPA compliance for websites.
|
7 |
Author: Cybot A/S
|
8 |
-
Version: 4.0.
|
9 |
Author URI: http://cookiebot.com
|
10 |
Text Domain: cookiebot
|
11 |
Domain Path: /langs
|
@@ -18,9 +18,9 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
18 |
define( 'CYBOT_COOKIEBOT_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
19 |
define( 'CYBOT_COOKIEBOT_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
20 |
|
21 |
-
require_once 'vendor/autoload.php';
|
22 |
-
require_once 'src/lib/helper.php';
|
23 |
-
require_once 'src/lib/global-deprecations.php';
|
24 |
|
25 |
try {
|
26 |
\cybot\cookiebot\lib\cookiebot();
|
5 |
Plugin URI: https://cookiebot.com/
|
6 |
Description: Cookiebot is a cloud-driven solution that automatically controls cookies and trackers, enabling full GDPR/ePrivacy and CCPA compliance for websites.
|
7 |
Author: Cybot A/S
|
8 |
+
Version: 4.0.2
|
9 |
Author URI: http://cookiebot.com
|
10 |
Text Domain: cookiebot
|
11 |
Domain Path: /langs
|
18 |
define( 'CYBOT_COOKIEBOT_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
19 |
define( 'CYBOT_COOKIEBOT_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
20 |
|
21 |
+
require_once __DIR__ . '/vendor/autoload.php';
|
22 |
+
require_once __DIR__ . '/src/lib/helper.php';
|
23 |
+
require_once __DIR__ . '/src/lib/global-deprecations.php';
|
24 |
|
25 |
try {
|
26 |
\cybot\cookiebot\lib\cookiebot();
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Tags: cookie, compliance, eu, gdpr, europe, cookie consent, consent, ccpa
|
4 |
* Requires at least: 4.4
|
5 |
* Tested up to: 5.8.1
|
6 |
-
* Stable tag: 4.0.
|
7 |
* Requires PHP: 5.6
|
8 |
* License: GPLv2 or later
|
9 |
|
@@ -196,6 +196,9 @@ You are able to define the mapping between Cookiebot and the WP Consent API in t
|
|
196 |
|
197 |
|
198 |
## Changelog ##
|
|
|
|
|
|
|
199 |
### 4.0.1 - 2022-01-20 ###
|
200 |
* Fixed missing file
|
201 |
|
3 |
* Tags: cookie, compliance, eu, gdpr, europe, cookie consent, consent, ccpa
|
4 |
* Requires at least: 4.4
|
5 |
* Tested up to: 5.8.1
|
6 |
+
* Stable tag: 4.0.2
|
7 |
* Requires PHP: 5.6
|
8 |
* License: GPLv2 or later
|
9 |
|
196 |
|
197 |
|
198 |
## Changelog ##
|
199 |
+
### 4.0.2 - 2022-01-20 ###
|
200 |
+
* Fixed missing dir path for require_once
|
201 |
+
|
202 |
### 4.0.1 - 2022-01-20 ###
|
203 |
* Fixed missing file
|
204 |
|
src/addons/Cookiebot_Addons.php
CHANGED
@@ -133,7 +133,7 @@ class Cookiebot_Addons {
|
|
133 |
}
|
134 |
|
135 |
protected function load_addons() {
|
136 |
-
require_once 'addons.php';
|
137 |
$this->addons_list = apply_filters(
|
138 |
'cybot_cookiebot_addons_list',
|
139 |
array_merge( PLUGIN_ADDONS, THEME_ADDONS, OTHER_ADDONS )
|
133 |
}
|
134 |
|
135 |
protected function load_addons() {
|
136 |
+
require_once __DIR__ . '/addons.php';
|
137 |
$this->addons_list = apply_filters(
|
138 |
'cybot_cookiebot_addons_list',
|
139 |
array_merge( PLUGIN_ADDONS, THEME_ADDONS, OTHER_ADDONS )
|
src/lib/Cookiebot_WP.php
CHANGED
@@ -11,7 +11,7 @@ use cybot\cookiebot\widgets\Dashboard_Widget_Cookiebot_Status;
|
|
11 |
use RuntimeException;
|
12 |
|
13 |
class Cookiebot_WP {
|
14 |
-
const COOKIEBOT_PLUGIN_VERSION = '4.0.
|
15 |
const COOKIEBOT_MIN_PHP_VERSION = '5.6.0';
|
16 |
|
17 |
/**
|
11 |
use RuntimeException;
|
12 |
|
13 |
class Cookiebot_WP {
|
14 |
+
const COOKIEBOT_PLUGIN_VERSION = '4.0.2';
|
15 |
const COOKIEBOT_MIN_PHP_VERSION = '5.6.0';
|
16 |
|
17 |
/**
|