Plugin Directory

Changeset 3393150


Ignore:
Timestamp:
11/10/2025 07:08:30 PM (5 months ago)
Author:
logtivity
Message:

Fix issues with some Woo Commerce option updates

Location:
logtivity
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • logtivity/tags/3.3.4/Loggers/Core/Logtivity_Core.php

    r3382713 r3393150  
    232232            $this->getRequestMethod() != 'GET'
    233233            && is_admin()
    234             && $oldValue != $newValue
     234            && $oldValue !== $newValue
    235235            && $this->ignoreOption($option) == false
    236236            && get_option('logtivity_enable_options_table_logging')
  • logtivity/tags/3.3.4/Loggers/Easy_Digital_Downloads/Licensing/Logtivity_Easy_Digital_Downloads_Software_Licensing.php

    r3369912 r3393150  
    252252    public function siteDeactivated()
    253253    {
    254         if (!wp_verify_nonce($_GET['_wpnonce'], 'edd_deactivate_site_nonce')) {
     254        if (!wp_verify_nonce($_GET['_wpnonce'] ?? null, 'edd_deactivate_site_nonce')) {
    255255            return;
    256256        }
  • logtivity/tags/3.3.4/functions/functions.php

    r3389065 r3393150  
    204204    function logtivity_logger_value($value): string
    205205    {
    206         $value = is_string($value) && is_serialized($value) ? unserialize($value) : $value;
     206        $value = is_string($value) ? maybe_unserialize($value) : $value;
    207207
    208208        switch (gettype($value)) {
  • logtivity/tags/3.3.4/logtivity.php

    r3389065 r3393150  
    66 * Description:       Record activity logs and errors logs across all your WordPress sites.
    77 * Author:            Logtivity
    8  * Version:           3.3.3
     8 * Version:           3.3.4
    99 * Text Domain:       logtivity
    1010 * Requires at least: 4.7
     
    4545     * @var string
    4646     */
    47     protected string $version = '3.3.3';
     47    protected string $version = '3.3.4';
    4848
    4949    /**
  • logtivity/tags/3.3.4/readme.txt

    r3389065 r3393150  
    55Requires at least: 6.6
    66Tested up to: 6.8
    7 Stable tag: 3.3.3
     7Stable tag: 3.3.4
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    262262
    263263== Changelog ==
     264
     265= 3.3.4 10 Nov 2025 =
     266  * Fix: "Nesting Level" error on Woo Commerce option updates
    264267
    265268= 3.3.3 - 03 Nov 2025 =
  • logtivity/trunk/Loggers/Core/Logtivity_Core.php

    r3382713 r3393150  
    232232            $this->getRequestMethod() != 'GET'
    233233            && is_admin()
    234             && $oldValue != $newValue
     234            && $oldValue !== $newValue
    235235            && $this->ignoreOption($option) == false
    236236            && get_option('logtivity_enable_options_table_logging')
  • logtivity/trunk/Loggers/Easy_Digital_Downloads/Licensing/Logtivity_Easy_Digital_Downloads_Software_Licensing.php

    r3369912 r3393150  
    252252    public function siteDeactivated()
    253253    {
    254         if (!wp_verify_nonce($_GET['_wpnonce'], 'edd_deactivate_site_nonce')) {
     254        if (!wp_verify_nonce($_GET['_wpnonce'] ?? null, 'edd_deactivate_site_nonce')) {
    255255            return;
    256256        }
  • logtivity/trunk/functions/functions.php

    r3389065 r3393150  
    204204    function logtivity_logger_value($value): string
    205205    {
    206         $value = is_string($value) && is_serialized($value) ? unserialize($value) : $value;
     206        $value = is_string($value) ? maybe_unserialize($value) : $value;
    207207
    208208        switch (gettype($value)) {
  • logtivity/trunk/logtivity.php

    r3389065 r3393150  
    66 * Description:       Record activity logs and errors logs across all your WordPress sites.
    77 * Author:            Logtivity
    8  * Version:           3.3.3
     8 * Version:           3.3.4
    99 * Text Domain:       logtivity
    1010 * Requires at least: 4.7
     
    4545     * @var string
    4646     */
    47     protected string $version = '3.3.3';
     47    protected string $version = '3.3.4';
    4848
    4949    /**
  • logtivity/trunk/readme.txt

    r3389065 r3393150  
    55Requires at least: 6.6
    66Tested up to: 6.8
    7 Stable tag: 3.3.3
     7Stable tag: 3.3.4
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    262262
    263263== Changelog ==
     264
     265= 3.3.4 10 Nov 2025 =
     266  * Fix: "Nesting Level" error on Woo Commerce option updates
    264267
    265268= 3.3.3 - 03 Nov 2025 =
Note: See TracChangeset for help on using the changeset viewer.