Changeset 2845093
- Timestamp:
- 01/08/2023 01:59:03 PM (3 years ago)
- Location:
- quick-license-manager/trunk
- Files:
-
- 3 edited
-
Readme.txt (modified) (2 diffs)
-
classes/qlm_api_view.php (modified) (1 diff)
-
wc_qlm.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
quick-license-manager/trunk/Readme.txt
r2844692 r2845093 4 4 Requires at least: 4.2 5 5 Tested up to: 6.1.1 6 Stable tag: 2.4. 86 Stable tag: 2.4.9 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 40 40 41 41 == Changelog == 42 43 = 2.4.9 - 01/08/2023 = 44 Fixed a regression issue in the last update that caused an exception when accessing the QLM settings 42 45 43 46 = 2.4.8 - 01/06/2023 = -
quick-license-manager/trunk/classes/qlm_api_view.php
r2844692 r2845093 8 8 function __construct() 9 9 { 10 $this->userdata1 = WC()->session->get( 'is_userdata1' ); 10 if (!is_null(WC()->session)) 11 { 12 $this->userdata1 = WC()->session->get( 'is_userdata1' ); 13 } 11 14 12 15 } -
quick-license-manager/trunk/wc_qlm.php
r2844692 r2845093 5 5 * Plugin URI: https://wordpress.org/plugins/quick-license-manager/ 6 6 * Description: Automates the creation of license keys when orders are placed with WooCommerce 7 * Version: 2.4. 87 * Version: 2.4.9 8 8 * Author: Soraco Technologies Inc. 9 9 * Author URI: https://soraco.co
Note: See TracChangeset
for help on using the changeset viewer.