Skip to content
Snippets Groups Projects
Commit fc72ff62 authored by mattwire's avatar mattwire
Browse files

Fix #272 undefined property PHP notice

parent 2926a90a
Branches
Tags
No related merge requests found
......@@ -73,9 +73,6 @@ function civicrm_api3_stripe_customer_get($params) {
'contact_id' => $dao->contact_id,
'processor_id' => $dao->processor_id,
];
if ($dao->email) {
$result['email'] = $dao->email;
}
$results[] = $result;
}
return civicrm_api3_create_success($results);
......
......@@ -9,10 +9,11 @@ Releases use the following numbering system:
* **[BC]**: Items marked with [BC] indicate a breaking change that will require updates to your code if you are using that code in your extension.
## Release 6.5.4 (not yet released 2020-10-24)
## Release 6.5.4 (not yet released 2020-11-01)
**This release REQUIRES that you upgrade mjwshared to 0.9.6**.
* Use `CRM.payment.isAJAXPaymentForm()` to check if we should load on backend forms. There is no change for the user, we are just switching to an identical shared function to reduce code duplication.
* Fix [#272](https://lab.civicrm.org/extensions/stripe/-/issues/272) "undefined property" PHP notice.
## Release 6.5.3
......
......@@ -15,7 +15,7 @@
<author>Matthew Wire (MJW Consulting)</author>
<email>mjw@mjwconsult.co.uk</email>
</maintainer>
<releaseDate>2020-10-24</releaseDate>
<releaseDate>2020-11-01</releaseDate>
<version>6.5.4-dev</version>
<develStage>beta</develStage>
<compatibility>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment