Index: www-lp/www/includes/classes/currencies.php =================================================================== diff -u -r4 -r21 --- www-lp/www/includes/classes/currencies.php (.../currencies.php) (revision 4) +++ www-lp/www/includes/classes/currencies.php (.../currencies.php) (revision 21) @@ -48,6 +48,10 @@ } else { $format_string = $this->currencies[$currency_type]['symbol_left'] . number_format(tep_round($number, $this->currencies[$currency_type]['decimal_places']), $this->currencies[$currency_type]['decimal_places'], $this->currencies[$currency_type]['decimal_point'], $this->currencies[$currency_type]['thousands_point']) . $this->currencies[$currency_type]['symbol_right']; } + // VDEUROCHAR + $format_string = str_replace( + 'EUR', + '', $format_string); return $format_string; }