From 6e6bd87bd11dbadcf6a88e2f4fa6edbca3b14ef7 Mon Sep 17 00:00:00 2001 From: Vangelis Pantazis Date: Tue, 27 Apr 2021 19:09:10 +0100 Subject: [PATCH] Fixes issue with state/province & country not translating values --- CRM/Report/Form/Grant/Detail.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CRM/Report/Form/Grant/Detail.php b/CRM/Report/Form/Grant/Detail.php index e703086889..ea561a0f6f 100644 --- a/CRM/Report/Form/Grant/Detail.php +++ b/CRM/Report/Form/Grant/Detail.php @@ -245,6 +245,9 @@ HERESQL; } $entryFound = TRUE; } + + $entryFound = $this->alterDisplayAddressFields($row, $rows, $rowNum, NULL, NULL) ? TRUE : $entryFound; + if (!$entryFound) { break; } -- 2.25.1