Fix IPN authorization setting orders to completed automatically
This commit is contained in:
parent
37936927f5
commit
4b82a750fc
|
@ -55,7 +55,7 @@ class WC_Gateway_Paypal_IPN_Handler extends WC_Gateway_Paypal_Response {
|
|||
$posted['payment_status'] = strtolower( $posted['payment_status'] );
|
||||
|
||||
// Sandbox fix.
|
||||
if ( isset( $posted['test_ipn'] ) && 1 == $posted['test_ipn'] && 'pending' == $posted['payment_status'] ) {
|
||||
if ( isset( $posted['test_ipn'], $posted['pending_reason'] ) && 'authorization' !== $posted['pending_reason'] && 1 == $posted['test_ipn'] && 'pending' == $posted['payment_status'] ) {
|
||||
$posted['payment_status'] = 'completed';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue