Merge pull request #21853 from rellect/incorrect_call
Remove non existent parameter
This commit is contained in:
commit
fb9847bcca
|
@ -106,7 +106,7 @@ class WC_Payment_Token_Data_Store extends WC_Data_Store_WP implements WC_Payment
|
||||||
$wpdb->update(
|
$wpdb->update(
|
||||||
$wpdb->prefix . 'woocommerce_payment_tokens',
|
$wpdb->prefix . 'woocommerce_payment_tokens',
|
||||||
$payment_token_data,
|
$payment_token_data,
|
||||||
array( 'token_id' => $token->get_id( 'edit' ) )
|
array( 'token_id' => $token->get_id() )
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue