Index: www-lp/www/includes/classes/currencies.php =================================================================== diff -u -r21 -r36 --- www-lp/www/includes/classes/currencies.php (.../currencies.php) (revision 21) +++ www-lp/www/includes/classes/currencies.php (.../currencies.php) (revision 36) @@ -48,10 +48,6 @@ } 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; }