Plugin Directory

Changeset 3463740


Ignore:
Timestamp:
02/17/2026 06:23:03 PM (6 weeks ago)
Author:
levelfourstorefront
Message:

Committing version 5.8.14, check the change log for more info.

Location:
wp-easycart/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-easycart/trunk/readme.txt

    r3451194 r3463740  
    33Tags: shopping cart, ecommerce, e-commerce, store, paypal, stripe, square, facebook, apple pay
    44Tested up to: 6.9
    5 Stable tag: 5.8.13
     5Stable tag: 5.8.14
    66License: WP EasyCart License
    77License URI: http://www.wpeasycart.com/terms-and-conditions/
     
    215215
    216216== Changelog ==
     217= 5.8.14 =
     218* Bug Fix - Small fix to shortcodes.
    217219= 5.8.13 =
    218220* 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  
    55 * 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>.
    66
    7  * Version: 5.8.13
     7 * Version: 5.8.14
    88 * Author: WP EasyCart
    99 * Author URI: http://www.wpeasycart.com
     
    1414 *
    1515 * @package wpeasycart
    16  * @version 5.8.13
     16 * @version 5.8.14
    1717 * @author WP EasyCart <[email protected]>
    1818 * @copyright Copyright (c) 2012, WP EasyCart
     
    2323define( 'EC_PLUGIN_DIRECTORY', __DIR__ );
    2424define( 'EC_PLUGIN_DATA_DIRECTORY', __DIR__ . '-data' );
    25 define( 'EC_CURRENT_VERSION', '5_8_13' );
     25define( 'EC_CURRENT_VERSION', '5_8_14' );
    2626define( 'EC_CURRENT_DB', '1_30' );/* Backwards Compatibility */
    2727define( 'EC_UPGRADE_DB', '98' );
     
    19651965                        $product_order_default .= ', ';
    19661966                    }
    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 );
    19691969                    $ids++;
    19701970                }
     
    19811981                    $product_where .= " OR ";
    19821982                }
    1983                 $product_where .= 'product.manufacturer_id = ' . (int) $manufacturer_id;
     1983                $product_where .= $wpdb->prepare( 'product.manufacturer_id = %d', (int) $manufacturer_id );
    19841984                $ids++;
    19851985            }
     
    29962996                $where_query .= " OR";
    29972997            }
    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] );
    29992999        }
    30003000        $where_query .= ")";
Note: See TracChangeset for help on using the changeset viewer.