You are here

function commerce_cart_order_ids_reset in Commerce Core 7

Resets the cached array of shopping cart orders.

1 call to commerce_cart_order_ids_reset()
commerce_cart_order_new in modules/cart/commerce_cart.module
Creates a new shopping cart order for the specified user.

File

modules/cart/commerce_cart.module, line 926
Implements the shopping cart system and add to cart features.

Code

function commerce_cart_order_ids_reset() {
  $cart_order_ids =& drupal_static('commerce_cart_order_id');
  $cart_order_ids = NULL;
}