diff --git a/htdocs/compta/tva/document.php b/htdocs/compta/tva/document.php
index fabaf1ee705..0a464c47b54 100644
--- a/htdocs/compta/tva/document.php
+++ b/htdocs/compta/tva/document.php
@@ -106,7 +106,7 @@ if ($object->id)
$head = vat_prepare_head($object);
- dol_fiche_head($head, 'documents', $langs->trans("VATPayment"), -1, 'bill');
+ dol_fiche_head($head, 'documents', $langs->trans("VATPayment"), -1, 'payment');
$morehtmlref = '
';
// Label of social contribution
diff --git a/htdocs/core/lib/vat.lib.php b/htdocs/core/lib/vat.lib.php
index 0bc3bb66e90..68e52a142a3 100644
--- a/htdocs/core/lib/vat.lib.php
+++ b/htdocs/core/lib/vat.lib.php
@@ -37,7 +37,7 @@ function vat_prepare_head($object)
$head = array();
$head[$tab][0] = DOL_URL_ROOT.'/compta/tva/card.php?id='.$object->id;
- $head[$tab][1] = $langs->trans('Card');
+ $head[$tab][1] = $langs->trans('VATPayment');
$head[$tab][2] = 'card';
$tab++;