diff --git a/htdocs/fourn/facture/fiche.php b/htdocs/fourn/facture/fiche.php
index 1193c59468f..ca2f681814f 100644
--- a/htdocs/fourn/facture/fiche.php
+++ b/htdocs/fourn/facture/fiche.php
@@ -400,14 +400,6 @@ else
$html->select_date($fac->date_echeance,'ech','','','',"update");
print '';
- $authorfullname=' ';
- if ($fac->author)
- {
- $author = new User($db, $fac->author);
- $author->fetch('');
- $authorfullname=$author->fullname;
- }
- print '
| '.$langs->trans('Author').' | '.$authorfullname.' |
';
print '| '.$langs->trans('Status').' | '.$fac->LibStatut($fac->paye,$fac->statut,4).' |
';
print ' |
';
print '';
@@ -545,14 +537,6 @@ else
print '';
print '';
- $authorfullname=' ';
- if ($fac->author)
- {
- $author = new User($db, $fac->author);
- $author->fetch('');
- $authorfullname=$author->fullname;
- }
- print '| '.$langs->trans('Author').' | '.$authorfullname.' | ';
print '
| '.$langs->trans('Status').' | '.$fac->LibStatut($fac->paye,$fac->statut,4).' |
';
print '| '.$langs->trans('AmountHT').' | '.price($fac->total_ht).' | '.$langs->trans('Currency'.$conf->monnaie).' |
';