Merge pull request #8348 from aelia-co/master

Fixed class reference in PayPal IPN class
This commit is contained in:
Claudio Sanches 2015-06-10 19:01:58 -03:00
commit 74f8e399d1
1 changed files with 2 additions and 2 deletions

View File

@ -57,8 +57,8 @@ class WC_Gateway_Paypal_IPN_Handler extends WC_Gateway_Paypal_Response {
WC_Gateway_Paypal::log( 'Found order #' . $order->id ); WC_Gateway_Paypal::log( 'Found order #' . $order->id );
WC_Gateway_Paypal::log( 'Payment status: ' . $posted['payment_status'] ); WC_Gateway_Paypal::log( 'Payment status: ' . $posted['payment_status'] );
if ( method_exists( __CLASS__, 'payment_status_' . $posted['payment_status'] ) ) { if ( method_exists( $this, 'payment_status_' . $posted['payment_status'] ) ) {
call_user_func( array( __CLASS__, 'payment_status_' . $posted['payment_status'] ), $order, $posted ); call_user_func( array( $this, 'payment_status_' . $posted['payment_status'] ), $order, $posted );
} }
} }
} }