From 1d75e6a4adf6ef11f332eb2190d7eab73c6638cb Mon Sep 17 00:00:00 2001 From: badsuricate Date: Wed, 23 Oct 2013 17:25:03 +0200 Subject: [PATCH] CHange input type hidden to input type integer --- core/lib/Thelia/Form/CartAdd.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/lib/Thelia/Form/CartAdd.php b/core/lib/Thelia/Form/CartAdd.php index 53496c513..59d13765d 100755 --- a/core/lib/Thelia/Form/CartAdd.php +++ b/core/lib/Thelia/Form/CartAdd.php @@ -99,8 +99,8 @@ class CartAdd extends BaseForm "for" => "quantity" ) )) - ->add("append", "hidden") - ->add("newness", "hidden") + ->add("append", "integer") + ->add("newness", "integer") ; }