diff --git a/htdocs/product/fiche.php b/htdocs/product/fiche.php
index 5120741cc77..42faf7ff7da 100644
--- a/htdocs/product/fiche.php
+++ b/htdocs/product/fiche.php
@@ -952,7 +952,8 @@ else
// Description (used in invoice, propal...)
print '
| '.$langs->trans("Description").' | ';
- $doleditor = new DolEditor('desc', $object->description, '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 4, 90);
+ // We use dolibarr_details as type of DolEditor here, because we must not accept images as description is included into PDF and not accepted by TCPDF.
+ $doleditor = new DolEditor('desc', $object->description, '', 160, 'dolibarr_details', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 4, 90);
$doleditor->Create();
print " |
";