inittab file found: 0_cart.php,v 1.1.1.1 2004/03/04 23:38:03 ccwjr Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License Shoppe Enhancement Controller - Copyright (c) 2003 WebMakers.com Linda McGrath - osCommerce@WebMakers.com */ require("includes/application_top.php"); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_SHOPPING_CART); $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_SHOPPING_CART)); // BOF: WebMakers.com Added: Attributes Sorter and Copier and Quantity Controller // Validate Cart for checkout $valid_to_checkout= true; $cart->get_products(true); if (!$valid_to_checkout) { // $messageStack->add_session('header', 'Please update your order ...', 'error'); // tep_redirect(tep_href_link(FILENAME_SHOPPING_CART)); } // EOF: WebMakers.com Added: Attributes Sorter and Copier and Quantity Controller if ($cart->count_contents() > 100000){ $cart->reset(); } $content = CONTENT_SHOPPING_CART; require(DIR_WS_TEMPLATES . TEMPLATE_NAME . '/' . TEMPLATENAME_MAIN_PAGE); require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>