Plugin Directory

Changeset 2660981


Ignore:
Timestamp:
01/20/2022 05:54:25 PM (4 years ago)
Author:
chuck1982
Message:

inventory item description hotfix

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

Legend:

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

    r2653634 r2660981  
    13691369        $inventory_name              = self::request( 'inventory_name' );
    13701370        $inventory_number            = self::request( 'inventory_number' );
    1371         $inventory_description       = self::request( 'inventory_description' );
    13721371        $inventory_size              = self::request( 'inventory_size' );
    13731372        $inventory_manufacturer      = self::request( 'inventory_manufacturer' );
     
    13911390
    13921391        $inventory_id = self::request( "inventory_item_id" );
     1392      $inventory_description       = self::request( 'inventory_description', '', 'wysiwyg' );
    13931393
    13941394        if ( ! apply_filters( 'wpim_do_save_item', TRUE, $inventory_id ) ) {
  • wp-inventory-manager/trunk/readme.txt

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

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