mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-07 19:54:15 +08:00
Fix typo in log order id display
This commit is contained in:
parent
b6d483ac6d
commit
19735af651
1 changed files with 6 additions and 1 deletions
|
@ -167,7 +167,12 @@ class OrderProcessor {
|
||||||
if ( ! $order ) {
|
if ( ! $order ) {
|
||||||
$order_id = $wc_order->get_meta( PayPalGateway::ORDER_ID_META_KEY );
|
$order_id = $wc_order->get_meta( PayPalGateway::ORDER_ID_META_KEY );
|
||||||
if ( ! $order_id ) {
|
if ( ! $order_id ) {
|
||||||
$this->logger->warning( "No PayPal order ID found in order #{$wc_order->get_id()} meta." );
|
$this->logger->warning(
|
||||||
|
sprintf(
|
||||||
|
'No PayPal order ID found in order #%d meta.',
|
||||||
|
$wc_order->get_id()
|
||||||
|
)
|
||||||
|
);
|
||||||
$this->last_error = __( 'Could not retrieve order. This browser may not be supported. Please try again with a different browser.', 'woocommerce-paypal-payments' );
|
$this->last_error = __( 'Could not retrieve order. This browser may not be supported. Please try again with a different browser.', 'woocommerce-paypal-payments' );
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue