Removed rounding argument as it does nothing

This commit is contained in:
Mike Jolley 2012-01-22 02:35:46 +00:00
parent ad30381ba3
commit a25c098bf0
1 changed files with 4 additions and 10 deletions

View File

@ -514,7 +514,7 @@ class woocommerce_product {
}
/** Returns the price (excluding tax) - ignores tax_class filters since the price may *include* tax and thus needs subtracting */
function get_price_excluding_tax( $round = true ) {
function get_price_excluding_tax() {
$price = $this->price;
@ -524,15 +524,9 @@ class woocommerce_product {
$tax_rates = $_tax->get_shop_base_rate( $this->tax_class );
if ($round) :
$taxes = $_tax->calc_tax( $price, $tax_rates, true );
$tax_amount = $_tax->get_tax_total( $taxes );
$price = round( $price - $tax_amount, 2);
else :
$taxes = $_tax->calc_tax( $price, $tax_rates, true );
$tax_amount = array_sum( $taxes );
$price = $price - $tax_amount;
endif;
endif;