Changeset 2551377
- Timestamp:
- 06/21/2021 11:51:09 AM (5 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) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quick-license-manager/trunk/Readme.txt
r2534496 r2551377 4 4 Requires at least: 4.2 5 5 Tested up to: 5.7.2 6 Stable tag: 2.4. 46 Stable tag: 2.4.5 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.5 - 06/21/2021 = 44 Fixed an issue when processing an upgrade of a license. 42 45 43 46 = 2.4.4 - 05/18/2021 = -
quick-license-manager/trunk/classes/qlm_api_view.php
r2534178 r2551377 174 174 $url_args = $url_args.'&is_avkey='.$qlm_activation_key; 175 175 176 if(empty($is_maintenanceplan) == false) 176 if(empty($qlm_activation_key) == false) 177 { 178 $url = $end.'/UpgradeLicense'.$url_args; 179 } 180 else if(empty($is_maintenanceplan) == false) 177 181 { 178 182 $url = $end.'/RenewMaintenancePlan'.$url_args; 179 } 180 else if(empty($qlm_activation_key) == false) 181 { 182 $url = $end.'/UpgradeLicense'.$url_args; 183 } 183 } 184 184 else 185 185 { -
quick-license-manager/trunk/wc_qlm.php
r2534496 r2551377 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. 47 * Version: 2.4.5 8 8 * Author: Soraco Technologies Inc. 9 9 * Author URI: https://soraco.co … … 80 80 function get_item_addon_value($order, $item, $field) 81 81 { 82 if ($qlm_product_addon == false) return; 82 $qlm_product_addon = get_option( 'qlm_product_addon'); 83 84 if ($qlm_product_addon == false) 85 { 86 debug_message (9, $order, __FUNCTION__ , 'Product Add-on support is not enabled.'); 87 return; 88 } 83 89 84 90 $meta_data = $item->get_meta(WCPA_ORDER_META_KEY); … … 95 101 return $fieldValue; 96 102 } 103 else 104 { 105 debug_message (11, $order, __FUNCTION__ , $v['name'].': '.$v['value']); 106 } 97 107 } 98 108
Note: See TracChangeset
for help on using the changeset viewer.