projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac22146
)
Payment instrument ID is not required at processorform level
author
Matthew Wire
<mjw@mjwconsult.co.uk>
Fri, 5 Jun 2020 09:42:04 +0000
(10:42 +0100)
committer
Matthew Wire
<mjw@mjwconsult.co.uk>
Fri, 5 Jun 2020 10:01:25 +0000
(11:01 +0100)
CRM/Core/Payment/ProcessorForm.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Core/Payment/ProcessorForm.php
b/CRM/Core/Payment/ProcessorForm.php
index 3f927557b0bd819fb2d4570d931dfd7f1bd21710..1649fa333a13808506041219b25f3fdbaef3ce52 100644
(file)
--- a/
CRM/Core/Payment/ProcessorForm.php
+++ b/
CRM/Core/Payment/ProcessorForm.php
@@
-139,7
+139,7
@@
class CRM_Core_Payment_ProcessorForm {
if (!empty($processorId)) {
$form->addElement('hidden', 'hidden_processor', 1);
}
- CRM_Core_Payment_Form::buildPaymentForm($form, $form->_paymentProcessor, $billing_profile_id, $form->isBackOffice, $form->paymentInstrumentID);
+ CRM_Core_Payment_Form::buildPaymentForm($form, $form->_paymentProcessor, $billing_profile_id, $form->isBackOffice, $form->paymentInstrumentID
?? NULL
);
}
}