Details
-
Type:
New Feature
-
Status: Done/Fixed
-
Priority:
Trivial
-
Resolution: Fixed/Completed
-
Affects Version/s: 4.2.0
-
Fix Version/s: 4.2.0
-
Component/s: None
-
Labels:None
Description
Patch core to provide common ipn (payment notification) url for extension-based payment processors
I think this patch is not correct. The query that gets the processor id is doing a wrong JOIN, that gets processor id as null if the name set in the Processor table it's different than the Processor Type name
SELECT ppt.class_name, ppt.name as processor_name, pp.id AS processor_id
FROM civicrm_payment_processor_type ppt
LEFT JOIN civicrm_payment_processor pp
----
> ON pp.name = ppt.name <------------AND pp.is_active
AND pp.is_test = %1
WHERE ppt.name = %2
should be
ON pp.payment_processor_type = ppt.name