Plugin Directory

Changeset 2653634


Ignore:
Timestamp:
01/06/2022 03:24:34 PM (4 years ago)
Author:
chuck1982
Message:

display options hotfix

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

Legend:

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

    r2653199 r2653634  
    20472047            <div class="list list_available"><h3><?php self::_e( 'Available Fields' ); ?></h3>
    20482048              <ul id="available" class="sortable">
    2049                   <?php esc_attr_e( $available ); ?>
     2049                  <?php echo wp_kses( $available, 'post' ); ?>
    20502050                <li style="display: none !important; data-field-id="
    20512051                ">Shiv for jQuery to insert before</li>
     
    20582058                  <h3><?php esc_attr_e( $titles[ $screen ] ); ?></h3>
    20592059                  <ul id="selected_listing" class="sortable">
    2060                       <?php esc_attr_e( $selected_fields[ $screen ] ); ?>
     2060                      <?php echo wp_kses( $selected_fields[ $screen ], 'post' ); ?>
    20612061                  </ul>
    20622062                  <input name="selected_<?php esc_attr_e( $screen ); ?>" type="hidden" value=""/>
  • wp-inventory-manager/trunk/readme.txt

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

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