Plugin Directory

Changeset 2666161


Ignore:
Timestamp:
01/26/2022 04:59:28 PM (4 years ago)
Author:
chuck1982
Message:

5.9 testing and minor fixes

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

Legend:

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

    r2660981 r2666161  
    351351                'class'    => 'notice',
    352352                'priority' => 1
    353             ];
    354         }
    355 
    356         if ( empty( $settings['license_key'] ) ) {
    357             $messages['license_key'] = [
    358                 'message' => sprintf( self::__( 'You have not entered a WP Inventory Manager license key in %sLicense Keys Settings%s.' ), $urls['settings_license'], $close_a ),
    359                 'class'   => 'warning'
    360353            ];
    361354        }
  • wp-inventory-manager/trunk/includes/wpinventory.class.php

    r2653199 r2666161  
    166166     * @param string $key
    167167     * @param mixed  $default
    168      * @param string $type - "text" | "email" | "textarea"
     168     * @param string $type - "text" | "email" | "textarea" | "wysiwyg" | "array"
    169169     *
    170170     * @return mixed
    171171     */
    172172    public static function request( $key, $default = NULL, $type = 'text' ) {
     173        // Prioritize $_POST, and then sanitize below depending on type (179, 185, 190, 195, default 199)
    173174        $var = ( isset( $_GET[ $key ] ) ) ? $_GET[ $key ] : $default;
    174175        $var = ( isset( $_POST[ $key ] ) ) ? $_POST[ $key ] : $var;
     
    801802  },
    802803  {
    803     "title": "Bulk Item Manager",
    804     "image": "' . self::$PLUGIN_URL . 'images\\/icons\\/bulk_item_manager.png",
    805     "description": "<p>Powerful tool for deleting and updating items in bulk.  Select based on a variety of criteria, preview the changes, and more.</p>",
    806     "learn_more_url": "https:\\/\\/www.wpinventory.com\\/documentation\\/user\\/add-on-documentation\\/bulk-item-management\\/",
    807     "key": "bulk_item",
    808     "item_name": "Add-On: Bulk Item Manager",
    809     "item_id": 1437
    810   },
    811   {
    812804    "title": "Advanced Inventory Manager",
    813805    "image": "' . self::$PLUGIN_URL . 'images\\/icons\\/advanced_inventory_manager.png",
     
    835827    "item_name": "Add-On: Locations Manager",
    836828    "item_id": 13153
    837   },
    838   {
    839     "title": "Advanced Search",
    840     "image": "' . self::$PLUGIN_URL . 'images\\/icons\\/advanced_search.png",
    841     "description": "<p>Provides powerful Amazon-like searching. Allow searching by a variety of fields, including price range.</p>",
    842     "learn_more_url": "https:\\/\\/www.wpinventory.com\\/documentation\\/user\\/add-on-documentation\\/advanced-search-filter\\/",
    843     "key": "advanced_search",
    844     "item_name": "Add-On: Advanced Search",
    845     "item_id": 14294
    846829  },
    847830  {
  • wp-inventory-manager/trunk/readme.txt

    r2660981 r2666161  
    33Tags: inventory, inventory manager
    44Requires at least: 3.5.0
    5 Tested up to: 5.8.2
    6 Stable Tag: 2.1.0.5
     5Tested up to: 5.9.0
     6Stable Tag: 2.1.0.6
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • wp-inventory-manager/trunk/wpinventory.php

    r2660981 r2666161  
    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.1.0.5
     7 * Version:        2.1.0.6
    88 * Author:        WP Inventory Manager
    99 * Author URI:    http://www.wpinventory.com/
     
    3434
    3535abstract class WPIMConstants {
    36     const VERSION = '2.1.0.5';
     36    const VERSION = '2.1.0.6';
    3737    const MIN_PHP_VERSION = '5.6';
    3838    const SHORTCODE = 'wpinventory';
Note: See TracChangeset for help on using the changeset viewer.