Plugin Directory

Changeset 3457473


Ignore:
Timestamp:
02/09/2026 09:22:53 PM (7 weeks ago)
Author:
uniconsent
Message:

Release 1.6.4

Location:
uniconsent-cmp
Files:
4 edited
13 copied

Legend:

Unmodified
Added
Removed
  • uniconsent-cmp/tags/1.6.4/README.txt

    r3457463 r3457473  
    11=== UniConsent Cookie Consent CMP - Consent Manager ===
    2 Version: 1.6.3
     2Version: 1.6.4
    33Contributors: uniconsent
    44Tags: cmp, cookie banner, cookie consent, iab, cookie
     
    66Tested up to: 6.8.3
    77Requires PHP: 7.4
    8 Stable tag: 1.6.3
     8Stable tag: 1.6.4
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    123123== Changelog ==
    124124
    125 = 1.6.3 =
     125= 1.6.4 =
    126126* Improve UI
    127127
  • uniconsent-cmp/tags/1.6.4/admin/settings.php

    r3457463 r3457473  
    211211        $errors = [];
    212212        foreach ($settings as $key => $value) {
    213             $old = get_option($key, '__not_set__');
    214             if ($old === '__not_set__') {
    215                 $errors[] = $key . ' not registered or DB error';
    216                 continue;
    217             }
     213            $old = get_option($key);
    218214            $result = update_option($key, $value);
    219215            if ($old !== $value && $result === false) {
  • uniconsent-cmp/tags/1.6.4/includes/class-unic-cmp.php

    r3457463 r3457473  
    2020            $this->version = UNIC_VERSION;
    2121        } else {
    22             $this->version = '1.6.3';
     22            $this->version = '1.6.4';
    2323        }
    2424        $this->plugin_name = 'uniconsent-cmp';
  • uniconsent-cmp/tags/1.6.4/uniconsent-cmp.php

    r3457463 r3457473  
    44* Plugin URI: https://www.uniconsent.com/?utm_source=wp-plugins
    55* Description: Leading Consent Management Platform for IAB TCF, GPP, GDPR, POPIA, CCPA, COPPA, and LGPD Compliance.
    6 * Version: 1.6.3
     6* Version: 1.6.4
    77* Author: UniConsent
    88* Author URI: https://www.uniconsent.com/?utm_source=wp-plugins
     
    1414}
    1515
    16 define( 'UNIC_CMP_VERSION', '1.6.3' );
     16define( 'UNIC_CMP_VERSION', '1.6.4' );
    1717
    1818function activate_unic_cmp() {
     
    4040        plugin_dir_url(__FILE__) . 'public/js/unic.min.js',
    4141        array(),
    42         '1.6.3',
     42        '1.6.4',
    4343        true
    4444    );
  • uniconsent-cmp/trunk/README.txt

    r3457463 r3457473  
    11=== UniConsent Cookie Consent CMP - Consent Manager ===
    2 Version: 1.6.3
     2Version: 1.6.4
    33Contributors: uniconsent
    44Tags: cmp, cookie banner, cookie consent, iab, cookie
     
    66Tested up to: 6.8.3
    77Requires PHP: 7.4
    8 Stable tag: 1.6.3
     8Stable tag: 1.6.4
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    123123== Changelog ==
    124124
    125 = 1.6.3 =
     125= 1.6.4 =
    126126* Improve UI
    127127
  • uniconsent-cmp/trunk/admin/settings.php

    r3457463 r3457473  
    211211        $errors = [];
    212212        foreach ($settings as $key => $value) {
    213             $old = get_option($key, '__not_set__');
    214             if ($old === '__not_set__') {
    215                 $errors[] = $key . ' not registered or DB error';
    216                 continue;
    217             }
     213            $old = get_option($key);
    218214            $result = update_option($key, $value);
    219215            if ($old !== $value && $result === false) {
  • uniconsent-cmp/trunk/includes/class-unic-cmp.php

    r3457463 r3457473  
    2020            $this->version = UNIC_VERSION;
    2121        } else {
    22             $this->version = '1.6.3';
     22            $this->version = '1.6.4';
    2323        }
    2424        $this->plugin_name = 'uniconsent-cmp';
  • uniconsent-cmp/trunk/uniconsent-cmp.php

    r3457463 r3457473  
    44* Plugin URI: https://www.uniconsent.com/?utm_source=wp-plugins
    55* Description: Leading Consent Management Platform for IAB TCF, GPP, GDPR, POPIA, CCPA, COPPA, and LGPD Compliance.
    6 * Version: 1.6.3
     6* Version: 1.6.4
    77* Author: UniConsent
    88* Author URI: https://www.uniconsent.com/?utm_source=wp-plugins
     
    1414}
    1515
    16 define( 'UNIC_CMP_VERSION', '1.6.3' );
     16define( 'UNIC_CMP_VERSION', '1.6.4' );
    1717
    1818function activate_unic_cmp() {
     
    4040        plugin_dir_url(__FILE__) . 'public/js/unic.min.js',
    4141        array(),
    42         '1.6.3',
     42        '1.6.4',
    4343        true
    4444    );
Note: See TracChangeset for help on using the changeset viewer.