From 089492f71fec4f065e8a22be5349b42fd566b8a8 Mon Sep 17 00:00:00 2001 From: Monish Deb Date: Thu, 28 Feb 2019 15:19:29 +0530 Subject: [PATCH] Don't break loop if address fields not found while formatting rows in Reports --- CRM/Report/Form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Report/Form.php b/CRM/Report/Form.php index a69e37d51e..6fb50c2f6d 100644 --- a/CRM/Report/Form.php +++ b/CRM/Report/Form.php @@ -4493,8 +4493,8 @@ LEFT JOIN civicrm_contact {$field['alias']} ON {$field['alias']}.id = {$this->_a $rows[$rowNum]["{$fieldName}_link"] = $url; $rows[$rowNum]["{$fieldName}_hover"] = ts("%1 for this %2.", array(1 => $linkText, 2 => $addressField)); } - $entryFound = TRUE; } + $entryFound = TRUE; } } -- 2.25.1