Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion includes/class-payment-gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ public function do_payment( $order, $amount = 0, $token = array() ) {
// Charge the customer
$data = array(
'amount' => $amount, // In cents. Rounding to avoid floating point errors.
'description' => sprintf( __( '%s - Order #%s', 'woocommerce' ), $order->get_order_number() ),
'description' => sprintf( __( '#%s', 'woocommerce' ), $order->get_order_number() ),
'currency' => strtoupper( get_woocommerce_currency() ),
'reference' => $order->get_id()
);
Expand Down