diff --git a/htdocs/fourn/facture/card.php b/htdocs/fourn/facture/card.php
index 280664ea421..e1af265a0de 100644
--- a/htdocs/fourn/facture/card.php
+++ b/htdocs/fourn/facture/card.php
@@ -1656,7 +1656,7 @@ else
$linkback = ''.$langs->trans("BackToList").'';
// Ref
- print '
| '.$langs->trans("Ref").' | ';
+ print ' |
| '.$langs->trans("Ref").' | ';
print $form->showrefnav($object, 'ref', $linkback, 1, 'ref', 'ref');
print ' | ';
print "
\n";
diff --git a/htdocs/fourn/facture/contact.php b/htdocs/fourn/facture/contact.php
index 664101848a6..fbcb907ec74 100644
--- a/htdocs/fourn/facture/contact.php
+++ b/htdocs/fourn/facture/contact.php
@@ -112,7 +112,7 @@ else if ($action == 'deletecontact' && $user->rights->fournisseur->facture->cree
* View
*/
-llxHeader('', $langs->trans("Bill"), "Facture");
+llxHeader('',$langs->trans('SupplierInvoice'));
$form = new Form($db);
$formcompany = new FormCompany($db);
@@ -144,7 +144,7 @@ if ($id > 0 || ! empty($ref))
$linkback = ''.$langs->trans("BackToList").'';
// Reference du facture
- print '| '.$langs->trans("Ref").' | ';
+ print ' |
| '.$langs->trans("Ref").' | ';
print $form->showrefnav($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
print " |
";
diff --git a/htdocs/fourn/facture/document.php b/htdocs/fourn/facture/document.php
index 673d679b4b5..97e84d0cb6e 100644
--- a/htdocs/fourn/facture/document.php
+++ b/htdocs/fourn/facture/document.php
@@ -81,7 +81,7 @@ include_once DOL_DOCUMENT_ROOT . '/core/actions_linkedfiles.inc.php';
$form = new Form($db);
-llxHeader();
+llxHeader('',$langs->trans('SupplierInvoice'));
if ($object->id > 0)
{
@@ -110,7 +110,7 @@ if ($object->id > 0)
$linkback = ''.$langs->trans("BackToList").'';
// Ref
- print '| '.$langs->trans("Ref").' | ';
+ print ' |
| '.$langs->trans("Ref").' | ';
print $form->showrefnav($object, 'ref', $linkback, 1, 'ref', 'ref');
print ' | ';
print "
\n";
@@ -197,7 +197,7 @@ if ($object->id > 0)
print '';
// Nb of files
- print '| '.$langs->trans('NbOfAttachedFiles').' | '.count($filearray).' |
';
+ print '| '.$langs->trans('NbOfAttachedFiles').' | '.count($filearray).' |
';
print '| '.$langs->trans('TotalSizeOfAttachedFiles').' | '.$totalsize.' '.$langs->trans('bytes').' |
';
diff --git a/htdocs/fourn/facture/info.php b/htdocs/fourn/facture/info.php
index 7033d555c0e..4dad6ea7f86 100644
--- a/htdocs/fourn/facture/info.php
+++ b/htdocs/fourn/facture/info.php
@@ -43,7 +43,7 @@ $result = restrictedArea($user, 'fournisseur', $id, 'facture_fourn', 'facture');
* View
*/
-llxHeader();
+llxHeader('',$langs->trans('SupplierInvoice'));
$object = new FactureFournisseur($db);
$object->fetch($id);
diff --git a/htdocs/fourn/facture/note.php b/htdocs/fourn/facture/note.php
index 3a4528d827e..1b8a4cd6bbc 100644
--- a/htdocs/fourn/facture/note.php
+++ b/htdocs/fourn/facture/note.php
@@ -67,7 +67,7 @@ if ($action == 'setlabel' && $user->rights->fournisseur->facture->creer)
$form = new Form($db);
-llxHeader();
+llxHeader('',$langs->trans('SupplierInvoice'));
if ($object->id > 0)
{
@@ -83,7 +83,7 @@ if ($object->id > 0)
$linkback = ''.$langs->trans("BackToList").'';
// Ref
- print '| '.$langs->trans("Ref").' | ';
+ print ' |
| '.$langs->trans("Ref").' | ';
print $form->showrefnav($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
print ' | ';
print "
\n";
@@ -167,7 +167,6 @@ if ($object->id > 0)
print '
';
- $colwidth=20;
include DOL_DOCUMENT_ROOT.'/core/tpl/notes.tpl.php';
dol_fiche_end();