Quick Search:

Mode

Context

Displaying 3 lines of context. None | Less | More | Full

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

1595
 
1596
 
1596
 
shopping_cart.php
_> 8181       $products_id_string = tep_get_uprid($products_id, $attributes);
  8282       $products_id = tep_get_prid($products_id_string);
  8383 
<>  84+      if (defined('MAX_QTY_IN_CART') && (MAX_QTY_IN_CART > 0) && ((int)$qty > MAX_QTY_IN_CART)) {
   85+        $qty = MAX_QTY_IN_CART;
   86+      }
   87+
8488       $attributes_pass_check = true;
  8589 
  8690       if (is_array($attributes)) {
     
 !
134138       $products_id_string = tep_get_uprid($products_id, $attributes);
  135139       $products_id = tep_get_prid($products_id_string);
  136140 
<>  141+      if (defined('MAX_QTY_IN_CART') && (MAX_QTY_IN_CART > 0) && ((int)$quantity > MAX_QTY_IN_CART)) {
   142+        $quantity = MAX_QTY_IN_CART;
   143+      }
   144+
<_ 137145       $attributes_pass_check = true;
  138146 
  139147       if (is_array($attributes)) {