From: Eileen McNaughton Date: Tue, 7 Apr 2015 04:57:41 +0000 (+1200) Subject: CRM-16245 display payment processor description in back office X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=a5c78dea7063f4f752353ed49dc0b82ef6eed9bc;p=civicrm-core.git CRM-16245 display payment processor description in back office --- 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;