From ae63fa5aeb75221d3853c2891d63a2cc78884a29 Mon Sep 17 00:00:00 2001 From: rGaillard Date: Fri, 28 Sep 2012 15:58:16 +0000 Subject: [PATCH] // Fix #PSCFV-4518 --- classes/Product.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Product.php b/classes/Product.php index 39680a78b..dc1fb6a0a 100644 --- a/classes/Product.php +++ b/classes/Product.php @@ -4827,7 +4827,7 @@ class ProductCore extends ObjectModel public function addWs($autodate = true, $null_values = false) { - $success = parent::add($autodate, $null_values); + $success = $this->add($autodate, $null_values); if ($success && Configuration::get('PS_SEARCH_INDEXATION')) Search::indexation(false, $this->id); return $success;