From a5c78dea7063f4f752353ed49dc0b82ef6eed9bc Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Tue, 7 Apr 2015 16:57:41 +1200 Subject: [PATCH] CRM-16245 display payment processor description in back office --- CRM/Contribute/Form/AbstractEditPayment.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CRM/Contribute/Form/AbstractEditPayment.php b/CRM/Contribute/Form/AbstractEditPayment.php index ebacd18ed5..50a5ed5db3 100644 --- a/CRM/Contribute/Form/AbstractEditPayment.php +++ b/CRM/Contribute/Form/AbstractEditPayment.php @@ -421,6 +421,9 @@ LEFT JOIN civicrm_contribution on (civicrm_contribution.contact_id = civicrm_co $this->_processors = array(); foreach ($this->_paymentProcessors as $id => $processor) { $this->_processors[$id] = ts($processor['name']); + if (!empty($processor['description'])) { + $this->_processors[$id] .= ' : ' . ts($processor['description']); + } } //get the valid recurring processors. $test = strtolower($this->_mode) == 'test' ? TRUE : FALSE; -- 2.25.1