Remove non existent parameter

This commit is contained in:
Refael Iliaguyev 2018-11-07 17:16:57 +02:00
parent 452e8bc065
commit e5a8df36e3
1 changed files with 1 additions and 1 deletions

View File

@ -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() )
); );
} }