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

Fix for 5.28 and propertybag

parent 043d280b
Branches
Tags
1 merge request!1186.4.2
......@@ -611,7 +611,10 @@ class CRM_Core_Payment_Stripe extends CRM_Core_Payment {
* @return bool
*/
private function isPaymentForEventAdditionalParticipants($params) {
return !empty($params->getCustomProperty('additional_participants'));
if ($params->getter('additional_participants', TRUE)) {
return TRUE;
}
return FALSE;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment