Skip to content

Commit

Permalink
openemr#7914 - Fix for contacts being empty or s tring (openemr#7915)
Browse files Browse the repository at this point in the history
Co-authored-by: Chris McCabe <[email protected]>
  • Loading branch information
chris-mccabe and adulion authored Jan 23, 2025
1 parent e514931 commit 17ca553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FHIR/SMART/ClientAdminController.php
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ private function renderEdit(ClientEntity $client, Request $request)
'contacts' => [
'type' => 'text'
,'label' => xl("Contacts")
,'value' => implode("|", $client->getContacts())
,'value' => is_array($client->getContacts()) ? implode("|", $client->getContacts()) : ''
],
'registrationDate' => [
'type' => 'text'
Expand Down

0 comments on commit 17ca553

Please sign in to comment.