From 834fc289b61cb9e294684be2fad0eed16524e2d7 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 16 Jun 2021 20:35:55 +0200 Subject: [PATCH] Fix look and feel v14 --- htdocs/compta/bank/list.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/compta/bank/list.php b/htdocs/compta/bank/list.php index 0d934b5bced..67599ffff0e 100644 --- a/htdocs/compta/bank/list.php +++ b/htdocs/compta/bank/list.php @@ -538,7 +538,7 @@ foreach ($accounts as $key => $type) { // Label if (!empty($arrayfields['b.label']['checked'])) { - print ''.$objecttmp->label.''; + print ''.dol_escape_htmltag($objecttmp->label).''; if (!$i) { $totalarray['nbfield']++; } @@ -556,7 +556,7 @@ foreach ($accounts as $key => $type) { // Number if (!empty($arrayfields['b.number']['checked'])) { - print ''.$objecttmp->number.''; + print ''.dol_escape_htmltag($objecttmp->number).''; if (!$i) { $totalarray['nbfield']++; }