Changeset 2622811
- Timestamp:
- 11/01/2021 01:47:24 PM (4 years ago)
- Location:
- wp-inventory-manager/trunk
- Files:
-
- 3 edited
-
includes/wpinventory.functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wpinventory.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-inventory-manager/trunk/includes/wpinventory.functions.php
r2338771 r2622811 1152 1152 $form .= '<span class="search">' . PHP_EOL; 1153 1153 $form .= ( $search_label ) ? '<label>' . $search_label . '</label>' : ''; 1154 $form .= '<input type="text" name="inventory_search" value="' . stripslashes( $inventory_search) . '" />';1154 $form .= '<input type="text" name="inventory_search" value="' . esc_attr( stripslashes( $inventory_search ) ) . '" />'; 1155 1155 $form .= '</span>' . PHP_EOL; 1156 1156 } -
wp-inventory-manager/trunk/readme.txt
r2565180 r2622811 3 3 Tags: inventory, inventory manager 4 4 Requires at least: 3.5.0 5 Tested up to: 5. 7.15 Tested up to: 5.8 6 6 Stable Tag: 1.8.8 7 7 License: GPLv2 or later … … 98 98 99 99 == Changelog == 100 = 2.0.9 = 101 *10/31/2021 102 * Tested up to 5.8 103 * Enhanced security concerning the search filter search input 104 100 105 = 2.0.8 = 101 106 *07/12/2021 -
wp-inventory-manager/trunk/wpinventory.php
r2565180 r2622811 5 5 * Plugin URI: http://www.wpinventory.com 6 6 * Description: Manage and display your products just like a shopping cart, but without the cart. 7 * Version: 2.0. 87 * Version: 2.0.9 8 8 * Author: WP Inventory Manager 9 9 * Author URI: http://www.wpinventory.com/ … … 11 11 * 12 12 * ------------------------------------------------------------------------ 13 * Copyright 2009-202 0WP Inventory Manager, LLC13 * Copyright 2009-2021 WP Inventory Manager, LLC 14 14 * 15 15 * This program is free software; you can redistribute it and/or modify … … 34 34 35 35 abstract class WPIMConstants { 36 const VERSION = '2.0. 8';36 const VERSION = '2.0.9'; 37 37 const MIN_PHP_VERSION = '5.6'; 38 38 const SHORTCODE = 'wpinventory';
Note: See TracChangeset
for help on using the changeset viewer.