space preserved before "included_tax" small element

This commit is contained in:
Maciej Kuś 2016-12-22 20:05:46 +01:00
parent 53c7c4025f
commit e5bae8b7af
1 changed files with 1 additions and 1 deletions

View File

@ -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 = '<small class="includes_tax">' . sprintf( __( '(includes %s)', 'woocommerce' ), implode( ', ', $tax_string_array ) ) . '</small>';
$tax_string = ' <small class="includes_tax">' . sprintf( __( '(includes %s)', 'woocommerce' ), implode( ', ', $tax_string_array ) ) . '</small>';
}
}