Plugin Directory

Changeset 3215682


Ignore:
Timestamp:
01/01/2025 03:09:50 PM (14 months ago)
Author:
chuck1982
Message:

Bug fixes for display settings

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

Legend:

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

    r3192884 r3215682  
    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_post($available) ?>
    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

    r3192884 r3215682  
    9898
    9999== Changelog ==
     100= 2.3.1 =
     101* Bug fix for display settings
     102
    100103= 2.3.0 =
    101104* WordPress 6.7 compatibility
  • wp-inventory-manager/trunk/wpinventory.php

    r3192884 r3215682  
    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.3.0
     7 * Version:        2.3.1
    88 * Author:        WP Inventory Manager
    99 * Author URI:    http://www.wpinventory.com/
Note: See TracChangeset for help on using the changeset viewer.