https://issues.civicrm.org/jira/browse/CRM-16105
$this->_processors[$id] = ts($processor['name']);
}
//get the valid recurring processors.
- $recurring = CRM_Core_PseudoConstant::paymentProcessor(FALSE, FALSE, 'is_recur = 1');
+ $test = $this->_mode == strtolower('test') ? TRUE : FALSE;
+ $recurring = CRM_Core_PseudoConstant::paymentProcessor(FALSE, $test, 'is_recur = 1');
$this->_recurPaymentProcessors = array_intersect_assoc($this->_processors, $recurring);
}
$this->assign('recurringPaymentProcessorIds',