Skip to content
Snippets Groups Projects
Commit 2748aa3b authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

Merge pull request #484 from dlobo/CRM-12385

CRM-12385
parents f10e2e6c f2e565d0
No related branches found
No related tags found
No related merge requests found
......@@ -24,10 +24,11 @@ $config = CRM_Core_Config::singleton();
*/
$query = "
SELECT url_site, password, user_name, signature
FROM civicrm_payment_processor
WHERE payment_processor_type = 'Payment_Express'
AND user_name = %1
SELECT url_site, password, user_name, signature
FROM civicrm_payment_processor
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'
AND user_name = %1
";
$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