Skip to content
Snippets Groups Projects
Commit f2e565d0 authored by lobo's avatar lobo
Browse files

CRM-12385

----------------------------------------
* CRM-12385: SQL error in Payment Express Payment processing module
  http://issues.civicrm.org/jira/browse/CRM-12385
parent c8484da9
No related branches found
No related tags found
No related merge requests found
...@@ -24,11 +24,11 @@ $config = CRM_Core_Config::singleton(); ...@@ -24,11 +24,11 @@ $config = CRM_Core_Config::singleton();
*/ */
$query = " $query = "
SELECT url_site, password, user_name, signature SELECT url_site, password, user_name, signature
FROM civicrm_payment_processor FROM civicrm_payment_processor
LEFT JOIN civicrm_payment_processor_type ON civicrm_payment_processor_type.id = civicrm_payment_processor.payment_processor_type_id LEFT JOIN civicrm_payment_processor_type ON civicrm_payment_processor_type.id = civicrm_payment_processor.payment_processor_type_id
WHERE civicrm_payment_processor_type.name = 'Payment_Express' WHERE civicrm_payment_processor_type.name = 'Payment_Express'
AND user_name = %1 AND user_name = %1
"; ";
$params = array(1 => array($_GET['userid'], 'String')); $params = array(1 => array($_GET['userid'], 'String'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment