Changeset 3463740
- Timestamp:
- 02/17/2026 06:23:03 PM (6 weeks ago)
- Location:
- wp-easycart/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wpeasycart.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-easycart/trunk/readme.txt
r3451194 r3463740 3 3 Tags: shopping cart, ecommerce, e-commerce, store, paypal, stripe, square, facebook, apple pay 4 4 Tested up to: 6.9 5 Stable tag: 5.8.1 35 Stable tag: 5.8.14 6 6 License: WP EasyCart License 7 7 License URI: http://www.wpeasycart.com/terms-and-conditions/ … … 215 215 216 216 == Changelog == 217 = 5.8.14 = 218 * Bug Fix - Small fix to shortcodes. 217 219 = 5.8.13 = 218 220 * New Feature - Option to show line item discounts for coupons in the cart, order details, and print receipt. -
wp-easycart/trunk/wpeasycart.php
r3451194 r3463740 5 5 * Description: The WordPress Shopping Cart by WP EasyCart is a simple eCommerce solution that installs into new or existing WordPress blogs. Customers purchase directly from your store! Get a full ecommerce platform in WordPress! Sell products, downloadable goods, gift cards, clothing and more! Now with WordPress, the powerful features are still very easy to administrate! If you have any questions, please view our website at <a href="http://www.wpeasycart.com" target="_blank">WP EasyCart</a>. 6 6 7 * Version: 5.8.1 37 * Version: 5.8.14 8 8 * Author: WP EasyCart 9 9 * Author URI: http://www.wpeasycart.com … … 14 14 * 15 15 * @package wpeasycart 16 * @version 5.8.1 316 * @version 5.8.14 17 17 * @author WP EasyCart <[email protected]> 18 18 * @copyright Copyright (c) 2012, WP EasyCart … … 23 23 define( 'EC_PLUGIN_DIRECTORY', __DIR__ ); 24 24 define( 'EC_PLUGIN_DATA_DIRECTORY', __DIR__ . '-data' ); 25 define( 'EC_CURRENT_VERSION', '5_8_1 3' );25 define( 'EC_CURRENT_VERSION', '5_8_14' ); 26 26 define( 'EC_CURRENT_DB', '1_30' );/* Backwards Compatibility */ 27 27 define( 'EC_UPGRADE_DB', '98' ); … … 1965 1965 $product_order_default .= ', '; 1966 1966 } 1967 $product_where .= 'product.product_id = ' . $product_id;1968 $product_order_default .= 'product.product_id = ' . $product_id . ' DESC';1967 $product_where .= $wpdb->prepare( 'product.product_id = %d', (int) $product_id ); 1968 $product_order_default .= $wpdb->prepare( 'product.product_id = %d DESC', (int) $product_id ); 1969 1969 $ids++; 1970 1970 } … … 1981 1981 $product_where .= " OR "; 1982 1982 } 1983 $product_where .= 'product.manufacturer_id = ' . (int) $manufacturer_id;1983 $product_where .= $wpdb->prepare( 'product.manufacturer_id = %d', (int) $manufacturer_id ); 1984 1984 $ids++; 1985 1985 } … … 2996 2996 $where_query .= " OR"; 2997 2997 } 2998 $where_query .= $wpdb->prepare( " product.product_id = %d", $product_ids[$i] );2998 $where_query .= $wpdb->prepare( " product.product_id = %d", (int) $product_ids[$i] ); 2999 2999 } 3000 3000 $where_query .= ")";
Note: See TracChangeset
for help on using the changeset viewer.