diff --git a/htdocs/product/index.php b/htdocs/product/index.php
index a8502498e41..2803c2d06ad 100644
--- a/htdocs/product/index.php
+++ b/htdocs/product/index.php
@@ -299,7 +299,7 @@ if ($result)
if (empty($conf->global->PRODUIT_MULTIPRICES))
{
print '
';
- if ($objp->price_base_type == 'TTC') print price($objp->price_ttc).' '.$langs->trans("TTC");
+ if (isset($objp->price_base_type) && $objp->price_base_type == 'TTC') print price($objp->price_ttc).' '.$langs->trans("TTC");
else print price($objp->price).' '.$langs->trans("HT");
print ' | ';
}