Changeset 3401909
- Timestamp:
- 11/24/2025 02:06:18 PM (4 months 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) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quick-license-manager/trunk/Readme.txt
r3317174 r3401909 3 3 Tags: quick license manager, software protection, ecommerce 4 4 Requires at least: 4.2 5 Tested up to: 6. 7.15 Tested up to: 6.8.3 6 6 Stable tag: 2.5.0 7 7 License: GPLv2 … … 40 40 41 41 == Changelog == 42 43 = 2.5.1 - 11/24/2025 = 44 Fixed issue with QLM icon in WP Admin Plugins page not displaying correctly. 42 45 43 46 = 2.5.0 - 06/20/2025 = -
quick-license-manager/trunk/classes/qlm_api_view.php
r3317174 r3401909 83 83 } 84 84 85 function send_request($order, $product, $user, $qty, $ymp =0, $exduration=-1, $exdate=null, $is_args="", $subscription, $qlm_activation_key)85 function send_request($order, $product, $user, $qty, $ymp, $exduration, $exdate, $is_args, $subscription, $qlm_activation_key) 86 86 { 87 87 if($user == 0) -
quick-license-manager/trunk/wc_qlm.php
r3317174 r3401909 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.5. 07 * Version: 2.5.1 8 8 * Author: Soraco Technologies Inc. 9 9 * Author URI: https://soraco.co 10 10 * WC requires at least: 4.0.0 11 * WC tested up to: 9.4.211 * WC tested up to: 10.8.3 12 12 */ 13 13 … … 1466 1466 function admin_menu(){ 1467 1467 1468 add_menu_page('Settings', 'QLM', 'manage_options', 'mnu_qlm', array(&$this, 'setting_api'), plugins_url( 'quick-license-manager/images/certificate.png' ) );1468 add_menu_page('Settings', 'QLM', 'manage_options', 'mnu_qlm', array(&$this, 'setting_api'), plugins_url( 'images/certificate.png', __FILE__ ) ); 1469 1469 add_submenu_page('mnu_qlm', 'Settings', 'Settings' , 'manage_options','mnu_qlm', array(&$this, 'setting_api') ); 1470 1470 add_submenu_page('mnu_qlm', 'Email Templates', 'Email Templates' , 'manage_options','qlm_templates', array(&$this, 'qlm_email_templates') );
Note: See TracChangeset
for help on using the changeset viewer.