diff --git a/htdocs/product.class.php b/htdocs/product.class.php index 54888754a68..edc8c768797 100644 --- a/htdocs/product.class.php +++ b/htdocs/product.class.php @@ -112,7 +112,6 @@ class Product { $this->price = 0; } - $this->price = round($this->price, 2); $sql = "INSERT INTO ".MAIN_DB_PREFIX."product (datec, fk_user_author, fk_product_type, price)"; $sql .= " VALUES (now(),".$user->id.",$this->type, " . ereg_replace(",",".",$this->price) . ")";