  |
81 | 81 | | $products_id_string = tep_get_uprid($products_id, $attributes); |
| |
82 | 82 | | $products_id = tep_get_prid($products_id_string); |
| |
83 | 83 | | |
  |
| 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 | + | |
|
84 | 88 | | $attributes_pass_check = true; |
| |
85 | 89 | | |
| |
86 | 90 | | if (is_array($attributes)) { |
| |
|
|
 |
… |
|
134 | 138 | | $products_id_string = tep_get_uprid($products_id, $attributes); |
| |
135 | 139 | | $products_id = tep_get_prid($products_id_string); |
| |
136 | 140 | | |
  |
| 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 | + | |
  |
137 | 145 | | $attributes_pass_check = true; |
| |
138 | 146 | | |
| |
139 | 147 | | if (is_array($attributes)) { |