From 0fe1634f29da9d7b715923efcc69a837337993a2 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 18 Dec 2021 22:36:32 +0100 Subject: [PATCH] Fix missing print --- htdocs/accountancy/bookkeeping/card.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/accountancy/bookkeeping/card.php b/htdocs/accountancy/bookkeeping/card.php index 195f7fcb26b..dd6a789b9f9 100644 --- a/htdocs/accountancy/bookkeeping/card.php +++ b/htdocs/accountancy/bookkeeping/card.php @@ -674,7 +674,7 @@ if ($action == 'create') { $resultfetch = $accountingaccount->fetch(null, $line->numero_compte, true); print ''; if ($resultfetch > 0) { - $accountingaccount->getNomUrl(0, 1, 1, '', 0); + print $accountingaccount->getNomUrl(0, 1, 1, '', 0); } else { print $line->numero_compte.' ('.$langs->trans("AccountRemovedFromCurrentChartOfAccount").')'; }