From e927aa1b629f5fcda9a9d362c5838e343ceaaed3 Mon Sep 17 00:00:00 2001 From: Janusz Dobrowolski Date: Wed, 13 Apr 2011 11:40:13 +0200 Subject: [PATCH] Rerun --- taxes/tax_calc.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/taxes/tax_calc.inc b/taxes/tax_calc.inc index f0941695..5d985299 100644 --- a/taxes/tax_calc.inc +++ b/taxes/tax_calc.inc @@ -196,10 +196,10 @@ function get_tax_for_items($items, $prices, $shipping_cost, $tax_group, $tax_inc $index = $item_tax['tax_type_id']; if ($item_tax['rate'] !== null && $ret_tax_array[$index]['rate'] !== null) { if($tax_included==1) {// 2008-11-26 Joe Hunt Taxes are stored without roundings - $ret_tax_array[$index]['Value'] += ($shipping_net * $item_tax['rate'] / 100, $dec); + $ret_tax_array[$index]['Value'] += ($shipping_net * $item_tax['rate'] / 100); $ret_tax_array[$index]['Net'] += $shipping_net; } else { - $ret_tax_array[$index]['Value'] += ($shipping_cost * $item_tax['rate'] / 100, $dec); + $ret_tax_array[$index]['Value'] += ($shipping_cost * $item_tax['rate'] / 100); $ret_tax_array[$index]['Net'] += $shipping_cost; } } -- 2.30.2