diff --git a/htdocs/accountancy/customer/card.php b/htdocs/accountancy/customer/card.php index d3d6ff8a945cec10515c9844f5d2d7431cde8d66..81fbea30baa374f965f83ba4345b2e2c9d8d6c6b 100644 --- a/htdocs/accountancy/customer/card.php +++ b/htdocs/accountancy/customer/card.php @@ -108,8 +108,7 @@ if (! empty($id)) { print '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">'; print '<input type="hidden" name="action" value="ventil">'; - $linkback='<a href="'.DOL_URL_ROOT.'/accountancy/customer/lines.php">'.$langs->trans("Back").'</a>'; - print_fiche_titre($langs->trans('CustomersVentilation'),$linkback,'title_setup'); + print_fiche_titre($langs->trans('CustomersVentilation'),'','title_setup'); dol_fiche_head(); diff --git a/htdocs/accountancy/supplier/card.php b/htdocs/accountancy/supplier/card.php index 42837680428cba7d412a11862208bc2c0523d4ba..c293418b6695bb93972f3ed33533a6b504300683 100644 --- a/htdocs/accountancy/supplier/card.php +++ b/htdocs/accountancy/supplier/card.php @@ -107,12 +107,11 @@ if (! empty($id)) { print '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">'; print '<input type="hidden" name="action" value="ventil">'; - $linkback='<a href="'.DOL_URL_ROOT.'/accountancy/supplier/lines.php">'.$langs->trans("Back").'</a>'; - print_fiche_titre($langs->trans('SuppliersVentilation'),$linkback,'title_setup'); + print_fiche_titre($langs->trans('SuppliersVentilation'),'','title_setup'); dol_fiche_head(); - print '<table class="border" width="100%" cellspacing="0" cellpadding="4">'; + print '<table class="border" width="100%">'; // ref invoice print '<tr><td>' . $langs->trans("BillsSuppliers") . '</td>'; @@ -121,7 +120,7 @@ if (! empty($id)) { print '<td>' . $facturefournisseur_static->getNomUrl(1) . '</td>'; print '</tr>'; - print '<tr><td width="20%">Ligne</td>'; + print '<tr><td width="20%">' . $langs->trans("Line") . '</td>'; print '<td>' . stripslashes(nl2br($objp->description)) . '</td></tr>'; print '<tr><td width="20%">' . $langs->trans("ProductLabel") . '</td>'; print '<td>' . dol_trunc($objp->product_label, 24) . '</td>';