Changeset 3041965 for complianz-gdpr
- Timestamp:
- 02/27/2024 02:00:51 PM (2 years ago)
- Location:
- complianz-gdpr/trunk
- Files:
-
- 3 edited
-
complianz-gpdr.php (modified) (2 diffs)
-
functions.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
complianz-gdpr/trunk/complianz-gpdr.php
r3041091 r3041965 4 4 * Plugin URI: https://www.wordpress.org/plugins/complianz-gdpr 5 5 * Description: Complianz Privacy Suite for GDPR, CaCPA, DSVGO, AVG with a conditional cookie warning and customized cookie policy 6 * Version: 7.0. 06 * Version: 7.0.1 7 7 * Requires at least: 5.9 8 8 * Requires PHP: 7.2 … … 136 136 define( 'cmplz_plugin_free', plugin_basename( __FILE__ ) ); 137 137 $debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '#'.time() : ''; 138 define( 'cmplz_version', '7.0. 0' . $debug );138 define( 'cmplz_version', '7.0.1' . $debug ); 139 139 define( 'cmplz_plugin_file', __FILE__ ); 140 140 } -
complianz-gdpr/trunk/functions.php
r3041091 r3041965 52 52 if ( function_exists('pll__') || function_exists('icl_translate') || defined("WPML_PLUGIN_BASENAME" ) ) { 53 53 //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 } 55 59 $fields = $fields ?: $config_fields; 56 60 $keys = array_keys( array_column( $fields, 'id' ), $id ); -
complianz-gdpr/trunk/readme.txt
r3041956 r3041965 9 9 Stable tag: 6.5.6 10 10 11 Configure your Cookie Banner, Cookie Consent and Cookie Policy with our Wizard and Cookie Scan. 11 Configure your Cookie Banner, Cookie Consent and Cookie Policy with our Wizard and Cookie Scan. 12 12 13 13 == Description == … … 175 175 176 176 == 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 177 181 = 7.0.0 = 178 182 * February 27th, 2024 … … 343 347 * Fix: new added query added to cookie block exclude to ensure Avada live builder works, props @franck_b, @markusand 344 348 345 346 349 == Upgrade notice == 347 350 * Please backup before upgrading.
Note: See TracChangeset
for help on using the changeset viewer.