[2.5] Combine includes string

This commit is contained in:
Mike Jolley 2016-01-28 13:21:03 +00:00
parent 64dfcdbea4
commit 5ca53d3449
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ function wc_cart_totals_order_total_html() {
$estimated_text = WC()->customer->is_customer_outside_base() && ! WC()->customer->has_calculated_shipping()
? sprintf( ' ' . __( 'estimated for %s', 'woocommerce' ), WC()->countries->estimated_for_prefix( $taxable_address[0] ) . WC()->countries->countries[ $taxable_address[0] ] )
: '';
$value .= '<small class="includes_tax">' . sprintf( __( '(includes %s%s)', 'woocommerce' ), implode( ', ', $tax_string_array ), $estimated_text ) . '</small>';
$value .= '<small class="includes_tax">' . sprintf( __( '(includes %s)', 'woocommerce' ), implode( ', ', $tax_string_array ) . $estimated_text ) . '</small>';
}
}