From e5bae8b7af84bc600ad080d05ac088fff2911fb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Kus=CC=81?= Date: Thu, 22 Dec 2016 20:05:46 +0100 Subject: [PATCH] space preserved before "included_tax" small element --- includes/class-wc-order.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class-wc-order.php b/includes/class-wc-order.php index e4e31378e5f..0de4c5546a1 100644 --- a/includes/class-wc-order.php +++ b/includes/class-wc-order.php @@ -171,7 +171,7 @@ class WC_Order extends WC_Abstract_Order { $tax_string_array[] = sprintf( '%s %s', wc_price( $tax_amount, array( 'currency' => $this->get_currency() ) ), WC()->countries->tax_or_vat() ); } if ( ! empty( $tax_string_array ) ) { - $tax_string = '' . sprintf( __( '(includes %s)', 'woocommerce' ), implode( ', ', $tax_string_array ) ) . ''; + $tax_string = ' ' . sprintf( __( '(includes %s)', 'woocommerce' ), implode( ', ', $tax_string_array ) ) . ''; } }