Skip to content

Commit

Permalink
Add description to the params sent to the processor
Browse files Browse the repository at this point in the history
  • Loading branch information
Jitendra Purohit committed Jul 30, 2018
1 parent a6e6345 commit 6653771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/wf_crm_webform_postprocess.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1930,7 +1930,7 @@ class wf_crm_webform_postprocess extends wf_crm_webform_base {
$params['financial_type_id'] = $this->contribution_page['financial_type_id'];

$params['source'] = $this->settings['new_contact_source'];
$params['item_name'] = t('Webform Payment: @title', array('@title' => $this->node->title));
$params['item_name'] = $params['description'] = t('Webform Payment: @title', array('@title' => $this->node->title));

if (method_exists($paymentProcessor, 'setSuccessUrl')) {
$paymentProcessor->setSuccessUrl($this->getIpnRedirectUrl('success'));
Expand Down

0 comments on commit 6653771

Please sign in to comment.