From 3114db9cd2ad855ace2c3c638670579547270ba2 Mon Sep 17 00:00:00 2001 From: MatteoPistorello Date: Fri, 15 Nov 2024 12:50:38 +0100 Subject: [PATCH] fix: visualizzazione nazione in banche --- modules/banche/actions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/banche/actions.php b/modules/banche/actions.php index f8f2daa6e..371748187 100755 --- a/modules/banche/actions.php +++ b/modules/banche/actions.php @@ -103,7 +103,7 @@ switch (filter('op')) { 'id_nazione' => [ 'id' => $nazione->id, 'iso2' => $nazione->iso2, - 'text' => $nazione->nome, + 'text' => $nazione->iso2.' - '.$nazione->getTranslation('title'), ], 'bank_code' => $iban->getBankCode(), 'branch_code' => $iban->getBranchCode(),