From e4b39b426382a6ee03b92a0329b5b59fda92439e Mon Sep 17 00:00:00 2001 From: tDidierjean Date: Tue, 13 Sep 2011 14:21:59 +0000 Subject: [PATCH] // fix validation of available_date field in Product class --- classes/Product.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Product.php b/classes/Product.php index a8a3f84d4..585eb0b7b 100644 --- a/classes/Product.php +++ b/classes/Product.php @@ -249,7 +249,7 @@ class ProductCore extends ObjectModel 'text_fields' => 'isUnsignedInt', 'active' => 'isBool', 'available_for_order' => 'isBool', - 'available_date' => 'isDate', + 'available_date' => 'isDateFormat', 'condition' => 'isGenericName', 'show_price' => 'isBool', 'ean13' => 'isEan13',