Plugin Directory

Changeset 2622811


Ignore:
Timestamp:
11/01/2021 01:47:24 PM (4 years ago)
Author:
chuck1982
Message:

pushing version 2.0.9

Location:
wp-inventory-manager/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-inventory-manager/trunk/includes/wpinventory.functions.php

    r2338771 r2622811  
    11521152        $form .= '<span class="search">' . PHP_EOL;
    11531153        $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 ) ) . '" />';
    11551155        $form .= '</span>' . PHP_EOL;
    11561156    }
  • wp-inventory-manager/trunk/readme.txt

    r2565180 r2622811  
    33Tags: inventory, inventory manager
    44Requires at least: 3.5.0
    5 Tested up to: 5.7.1
     5Tested up to: 5.8
    66Stable Tag: 1.8.8
    77License: GPLv2 or later
     
    9898
    9999== 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
    100105= 2.0.8 =
    101106*07/12/2021
  • wp-inventory-manager/trunk/wpinventory.php

    r2565180 r2622811  
    55 * Plugin URI:    http://www.wpinventory.com
    66 * Description:    Manage and display your products just like a shopping cart, but without the cart.
    7  * Version:        2.0.8
     7 * Version:        2.0.9
    88 * Author:        WP Inventory Manager
    99 * Author URI:    http://www.wpinventory.com/
     
    1111 *
    1212 * ------------------------------------------------------------------------
    13  * Copyright 2009-2020 WP Inventory Manager, LLC
     13 * Copyright 2009-2021 WP Inventory Manager, LLC
    1414 *
    1515 * This program is free software; you can redistribute it and/or modify
     
    3434
    3535abstract class WPIMConstants {
    36     const VERSION = '2.0.8';
     36    const VERSION = '2.0.9';
    3737    const MIN_PHP_VERSION = '5.6';
    3838    const SHORTCODE = 'wpinventory';
Note: See TracChangeset for help on using the changeset viewer.