From 8477a5ac285648b0d0660048f051a7ae7c819b2e Mon Sep 17 00:00:00 2001 From: Bilal Catic Date: Sun, 30 Sep 2018 22:58:19 +0200 Subject: [PATCH] increase limit in backend --- api-wiaas/server/components/v2/cart/CartModel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-wiaas/server/components/v2/cart/CartModel.php b/api-wiaas/server/components/v2/cart/CartModel.php index cac7c25..69974c7 100644 --- a/api-wiaas/server/components/v2/cart/CartModel.php +++ b/api-wiaas/server/components/v2/cart/CartModel.php @@ -273,7 +273,7 @@ $idCustomerInstance = $database->escapeValue($idCustomerInstance); $quantity = $database->escapeValue($quantity); - if($database->invalidNumber('QUANTITY', $quantity, 1, 100)){ + if($database->invalidNumber('QUANTITY', $quantity, 1, 65000)){ $err_mes = [ 'code' => 'error', 'message' => 'INVALID_QUANTITY'