Plugin Directory

Changeset 3041965 for complianz-gdpr


Ignore:
Timestamp:
02/27/2024 02:00:51 PM (2 years ago)
Author:
RogierLankhorst
Message:

6.5.6

Location:
complianz-gdpr/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • complianz-gdpr/trunk/complianz-gpdr.php

    r3041091 r3041965  
    44 * Plugin URI: https://www.wordpress.org/plugins/complianz-gdpr
    55 * Description: Complianz Privacy Suite for GDPR, CaCPA, DSVGO, AVG with a conditional cookie warning and customized cookie policy
    6  * Version: 7.0.0
     6 * Version: 7.0.1
    77 * Requires at least: 5.9
    88 * Requires PHP: 7.2
     
    136136            define( 'cmplz_plugin_free', plugin_basename( __FILE__ ) );
    137137            $debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '#'.time() : '';
    138             define( 'cmplz_version', '7.0.0' . $debug );
     138            define( 'cmplz_version', '7.0.1' . $debug );
    139139            define( 'cmplz_plugin_file', __FILE__ );
    140140        }
  • complianz-gdpr/trunk/functions.php

    r3041091 r3041965  
    5252        if ( function_exists('pll__') || function_exists('icl_translate') || defined("WPML_PLUGIN_BASENAME" ) ) {
    5353            //check if Complianz::$config has property fields
    54             $config_fields = COMPLIANZ::$config->fields ?? [];
     54            if (class_exists('COMPLIANZ')) {
     55                $config_fields = COMPLIANZ::$config->fields ?? [];
     56            } else {
     57                $config_fields = [];
     58            }
    5559            $fields = $fields ?: $config_fields;
    5660            $keys   = array_keys( array_column( $fields, 'id' ), $id );
  • complianz-gdpr/trunk/readme.txt

    r3041956 r3041965  
    99Stable tag: 6.5.6
    1010
    11 Configure your Cookie Banner, Cookie Consent and Cookie Policy with our Wizard and Cookie Scan. 
     11Configure your Cookie Banner, Cookie Consent and Cookie Policy with our Wizard and Cookie Scan.
    1212
    1313== Description ==
     
    175175
    176176== Changelog ==
     177= 7.0.1 =
     178* February 27th, 2024
     179* Fix: catch COMPLIANZ class not loaded yet in cmplz_get_option, props @sizilianischekueche, @franktomas, @martinellimarco, @boinich
     180
    177181= 7.0.0 =
    178182* February 27th, 2024
     
    343347* Fix: new added query added to cookie block exclude to ensure Avada live builder works, props @franck_b, @markusand
    344348
    345 
    346349== Upgrade notice ==
    347350* Please backup before upgrading.
Note: See TracChangeset for help on using the changeset viewer.