Index: src/system/classes/shopping_cart/OrderDetailsCartContentView.inc.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- src/system/classes/shopping_cart/OrderDetailsCartContentView.inc.php (revision 497383e4a0203fe142b598f29a74c632b9d29781)
+++ src/system/classes/shopping_cart/OrderDetailsCartContentView.inc.php (revision )
@@ -276,7 +276,7 @@
$this->total -= $this->discount;
}
$this->totalContent .= SUB_TITLE_SUB_TOTAL . $this->xtcPrice->xtcFormat($this->total, true) . '
';
- $this->total = $this->xtcPrice->xtcFormat($this->total + $this->discount, true);
+ $this->total = $this->xtcPrice->xtcFormat($this->total + $this->discount, false);
}
else
{
@@ -312,7 +312,7 @@
$cartTaxInfo = MODULE_ORDER_TOTAL_SUBTOTAL_TITLE_NO_TAX . ': ' . $this->xtcPrice->xtcFormat((double)$this->total - (double)$tax, true) . '
' . $cartTaxInfo;
- $this->total = $this->xtcPrice->xtcFormat((double)$this->total - (double)$tax + $this->discount, true);
+ $this->total = $this->xtcPrice->xtcFormat((double)$this->total - (double)$tax + $this->discount, false);
}
}
$this->_setContentDataUstContentDeprecated($cartTaxInfo);
\ No newline at end of file