Plugin Directory

Changeset 2845093


Ignore:
Timestamp:
01/08/2023 01:59:03 PM (3 years ago)
Author:
soraco
Message:

Fixed a regression issue in the last update that caused an exception when accessing the QLM settings

Location:
quick-license-manager/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • quick-license-manager/trunk/Readme.txt

    r2844692 r2845093  
    44Requires at least: 4.2
    55Tested up to: 6.1.1
    6 Stable tag: 2.4.8
     6Stable tag: 2.4.9
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4040
    4141== Changelog ==
     42
     43= 2.4.9 - 01/08/2023 =
     44Fixed a regression issue in the last update that caused an exception when accessing the QLM settings
    4245
    4346= 2.4.8 - 01/06/2023 =
  • quick-license-manager/trunk/classes/qlm_api_view.php

    r2844692 r2845093  
    88        function __construct()
    99        {
    10             $this->userdata1 = WC()->session->get( 'is_userdata1' );   
     10            if (!is_null(WC()->session))
     11            {
     12                $this->userdata1 = WC()->session->get( 'is_userdata1' );   
     13            }
    1114           
    1215        }
  • quick-license-manager/trunk/wc_qlm.php

    r2844692 r2845093  
    55 * Plugin URI: https://wordpress.org/plugins/quick-license-manager/
    66 * Description: Automates the creation of license keys when orders are placed with WooCommerce
    7  * Version: 2.4.8
     7 * Version: 2.4.9
    88 * Author: Soraco Technologies Inc.
    99 * Author URI: https://soraco.co
Note: See TracChangeset for help on using the changeset viewer.