diff --git a/htdocs/fourn/facture/fiche.php b/htdocs/fourn/facture/fiche.php
index 7853a69a420..137e270ee63 100644
--- a/htdocs/fourn/facture/fiche.php
+++ b/htdocs/fourn/facture/fiche.php
@@ -844,7 +844,7 @@ else
}
else
{
- print '';
+ print '';
}
print '';
@@ -965,7 +965,8 @@ else
print '
';
print $html->select_type_of_lines(-1,'type',1);
- if ($conf->produit->enabled && $conf->service->enabled) print ' ';
+ if (($conf->produit->enabled && $conf->service->enabled)
+ || (empty($conf->produit->enabled) && empty($conf->service->enabled))) print ' ';
// Editor wysiwyg
if ($conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_DETAILS)
|