Changeset 2653634
- Timestamp:
- 01/06/2022 03:24:34 PM (4 years ago)
- Location:
- wp-inventory-manager/trunk
- Files:
-
- 3 edited
-
includes/wpinventory.admin.class.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
wpinventory.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-inventory-manager/trunk/includes/wpinventory.admin.class.php
r2653199 r2653634 2047 2047 <div class="list list_available"><h3><?php self::_e( 'Available Fields' ); ?></h3> 2048 2048 <ul id="available" class="sortable"> 2049 <?php e sc_attr_e( $available); ?>2049 <?php echo wp_kses( $available, 'post' ); ?> 2050 2050 <li style="display: none !important; data-field-id=" 2051 2051 ">Shiv for jQuery to insert before</li> … … 2058 2058 <h3><?php esc_attr_e( $titles[ $screen ] ); ?></h3> 2059 2059 <ul id="selected_listing" class="sortable"> 2060 <?php e sc_attr_e( $selected_fields[ $screen ]); ?>2060 <?php echo wp_kses( $selected_fields[ $screen ], 'post' ); ?> 2061 2061 </ul> 2062 2062 <input name="selected_<?php esc_attr_e( $screen ); ?>" type="hidden" value=""/> -
wp-inventory-manager/trunk/readme.txt
r2650620 r2653634 4 4 Requires at least: 3.5.0 5 5 Tested up to: 5.8.2 6 Stable Tag: 2.1.0. 26 Stable Tag: 2.1.0.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
wp-inventory-manager/trunk/wpinventory.php
r2650620 r2653634 5 5 * Plugin URI: http://www.wpinventory.com 6 6 * Description: Manage and display your products just like a shopping cart, but without the cart. 7 * Version: 2.1.0. 27 * Version: 2.1.0.3 8 8 * Author: WP Inventory Manager 9 9 * Author URI: http://www.wpinventory.com/ … … 34 34 35 35 abstract class WPIMConstants { 36 const VERSION = '2.1.0 ';36 const VERSION = '2.1.0.3'; 37 37 const MIN_PHP_VERSION = '5.6'; 38 38 const SHORTCODE = 'wpinventory';
Note: See TracChangeset
for help on using the changeset viewer.