Details
-
Type:
Bug
-
Status: In Review
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 5.11.3
-
Component/s: None
-
Labels:None
Description
To reproduce:
- Install both Paypal Payments Standard and Paypal Checkout
- Set up IPN in Paypal
- Make a payment with Paypal Checkout
- See that two payments are recorded
To resolve (not tested):
components/gateways/nonmerchant/paypal_payments_standard.php around line 424 add
Loader::loadComponents($this, ['Record']); if (($transaction = $this->Record->query( "select * from transactions where reference_id = ? AND `status` = 'approved'", [$post['txn_id'] ?? null] )->fetch() )) { return; }