Skip to content

Commit

Permalink
Release 7.1.5: Updated bf dates
Browse files Browse the repository at this point in the history
  • Loading branch information
g-dom3 committed Nov 13, 2024
1 parent 620d55a commit 8726a7c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions class-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ public function is_bf(){
if ( defined("cmplz_premium" ) ) {
return false;
}
$start_day = 20;
$end_day = 27;
$start_day = 25;
$end_day = 30;
$current_year = date("Y");//e.g. 2021
$current_month = date("n");//e.g. 3
$current_day = date("j");//e.g. 4

return $current_year == 2023
return $current_year == 2024
&& $current_month == 11
&& $current_day >= $start_day
&& $current_day <= $end_day;
Expand Down
4 changes: 2 additions & 2 deletions complianz-gpdr.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Complianz | GDPR/CCPA Cookie Consent
* Plugin URI: https://www.wordpress.org/plugins/complianz-gdpr
* Description: Complianz Privacy Suite for GDPR, CaCPA, DSVGO, AVG with a conditional cookie warning and customized cookie policy
* Version: 7.1.4
* Version: 7.1.5
* Requires at least: 5.9
* Requires PHP: 7.4
* Text Domain: complianz-gdpr
Expand Down Expand Up @@ -135,7 +135,7 @@ private function setup_constants() {
//for auto upgrade functionality
define( 'cmplz_plugin_free', plugin_basename( __FILE__ ) );
$debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '#'.time() : '';
define( 'cmplz_version', '7.1.4' . $debug );
define( 'cmplz_version', '7.1.5' . $debug );
define( 'cmplz_plugin_file', __FILE__ );
}

Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Requires at least: 5.9
License: GPL2
Requires PHP: 7.4
Tested up to: 6.6
Stable tag: 7.1.4
Stable tag: 7.1.5

Configure your Cookie Banner, Cookie Consent and Cookie Policy with our Wizard and Cookie Scan.

Expand Down Expand Up @@ -186,6 +186,10 @@ With some custom CSS this is possible, but we do not consider a cookie wall to b

== Changelog ==

= 7.1.5 =
* November 13th, 2024
* Fix: update bf dates

= 7.1.4 =
* October 28th, 2024
* Improvement: Add support for Montana, Oregon, and Texas state privacy laws enhancement.
Expand Down

0 comments on commit 8726a7c

Please sign in to comment.