Skip to content
Snippets Groups Projects
Unverified Commit 5f291f0d authored by Seamus Lee's avatar Seamus Lee Committed by GitHub
Browse files

Merge pull request #19355 from demeritcowboy/php74-more3

php74 compatibility - Backwards arguments to implode are deprecated
parents cb4c0593 e4f09afe
Branches
Tags
No related merge requests found
......@@ -430,7 +430,7 @@ function _civicrm_api3_profile_getbillingpseudoprofile(&$params) {
'api.address.get.2' => ['is_billing' => TRUE, 'return' => $addressFields],
'api.email.get.1' => ['location_type_id' => 'Billing'],
'api.email.get.2' => ['is_billing' => TRUE],
'return' => 'api.email.get, api.address.get, api.address.getoptions, country, state_province, email, first_name, last_name, middle_name, ' . implode($addressFields, ','),
'return' => 'api.email.get, api.address.get, api.address.getoptions, country, state_province, email, first_name, last_name, middle_name, ' . implode(',', $addressFields),
]
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment