Skip to content

Commit

Permalink
Merge pull request #13725 from JMAConsulting/CRM-21754-rc
Browse files Browse the repository at this point in the history
Don't break loop if address fields not found while formatting rows in Reports
  • Loading branch information
eileenmcnaughton authored Feb 28, 2019
2 parents 377423f + 089492f commit 5270e02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Report/Form.php
Original file line number Diff line number Diff line change
Expand Up @@ -4493,8 +4493,8 @@ public function alterDisplayAddressFields(&$row, &$rows, &$rowNum, $baseUrl, $li
$rows[$rowNum]["{$fieldName}_link"] = $url;
$rows[$rowNum]["{$fieldName}_hover"] = ts("%1 for this %2.", array(1 => $linkText, 2 => $addressField));
}
$entryFound = TRUE;
}
$entryFound = TRUE;
}
}

Expand Down

0 comments on commit 5270e02

Please sign in to comment.