Changeset 3198385
- Timestamp:
- 11/27/2024 06:15:08 PM (16 months ago)
- Location:
- quick-license-manager
- Files:
-
- 4 edited
-
tags/2.0.10/wc_qlm.php (modified) (1 diff)
-
trunk/Readme.txt (modified) (2 diffs)
-
trunk/classes/qlm_emails.php (modified) (3 diffs)
-
trunk/wc_qlm.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
quick-license-manager/tags/2.0.10/wc_qlm.php
r2351804 r3198385 54 54 { 55 55 if ($qlm_product_addon == false) return; 56 57 // Required for plugin: WooCommerce Custom Product Addons (Free) 58 if (!defined('WCPA_ORDER_META_KEY')) 59 { 60 define('WCPA_ORDER_META_KEY', '_WCPA_order_meta_data'); 61 } 56 62 57 63 $meta_data = $item->get_meta(WCPA_ORDER_META_KEY); -
quick-license-manager/trunk/Readme.txt
r2971477 r3198385 4 4 Requires at least: 4.2 5 5 Tested up to: 6.3.1 6 Stable tag: 2.4.1 56 Stable tag: 2.4.16 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.16 - 11/27/2024 = 44 Resolved vulnerability issue. 45 Tested with latest versions of WP and WooCommerce 42 46 43 47 = 2.4.15 - 09/25/2023 = -
quick-license-manager/trunk/classes/qlm_emails.php
r2534178 r3198385 58 58 $qml_product_id = ''; 59 59 if(isset($_POST['submit_qlm_products'])){ 60 $qml_product_id = $_POST['submit_qlm_products'];60 $qml_product_id = sanitize_text_field ($_POST['submit_qlm_products']); 61 61 } 62 62 ?> … … 143 143 <select class="form-control" required name="submit_qlm_products" onchange="this.form.submit()"> 144 144 <?php if ($qml_product_id){?> 145 <option value="<?php echo $qml_product_id ?>"><?php echo get_the_title($qml_product_id); ?></option>145 <option value="<?php echo sanitize_text_field($qml_product_id) ?>"><?php echo get_the_title(sanitize_text_field($qml_product_id)); ?></option> 146 146 <?php } else { ?> 147 147 <option value="<?php ?>">Select Product</option> … … 173 173 wp_editor( $default_template, $editor_id, $settings); 174 174 } ?> 175 <input type="hidden" value="<?php echo $qml_product_id;?>" name="qlm_pid">175 <input type="hidden" value="<?php echo sanitize_text_field($qml_product_id);?>" name="qlm_pid"> 176 176 </div> 177 177 <div class="col-md-2" > </div> -
quick-license-manager/trunk/wc_qlm.php
r2971477 r3198385 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.1 57 * Version: 2.4.16 8 8 * Author: Soraco Technologies Inc. 9 9 * Author URI: https://soraco.co
Note: See TracChangeset
for help on using the changeset viewer.