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:
9fe6750
)
Update Payment.php
author
Dave Greenberg
<dave@civicrm.org>
Fri, 20 Feb 2015 00:04:02 +0000
(16:04 -0800)
committer
Dave Greenberg
<dave@civicrm.org>
Fri, 20 Feb 2015 00:04:02 +0000
(16:04 -0800)
Remove extraneous "$processorInstance = " on line 592.
CRM/Core/Payment.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Core/Payment.php
b/CRM/Core/Payment.php
index 60a6e3550934774222d075c3d6e269400f5ea86f..8a21c0298bbb99730362368b1053a238bcf2957e 100644
(file)
--- a/
CRM/Core/Payment.php
+++ b/
CRM/Core/Payment.php
@@
-589,7
+589,7
@@
abstract class CRM_Core_Payment {
}
}
- $processorInstance =
$processorInstance =
Civi\Payment\System::singleton()->getById($dao->processor_id);
+ $processorInstance = Civi\Payment\System::singleton()->getById($dao->processor_id);
// Should never be empty - we already established this processor_id exists and is active.
if (empty($processorInstance)) {