Index: oscommerce2/trunk/catalog/includes/classes/currencies.php =================================================================== diff -u -r1592 -r1803 --- oscommerce2/trunk/catalog/includes/classes/currencies.php (.../currencies.php) (revision 1592) +++ oscommerce2/trunk/catalog/includes/classes/currencies.php (.../currencies.php) (revision 1803) @@ -1,11 +1,11 @@ currencies[$currency_type]['value']; $format_string = $this->currencies[$currency_type]['symbol_left'] . number_format(tep_round($number * $rate, $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']; -// if the selected currency is in the european euro-conversion and the default currency is euro, -// the currency will displayed in the national currency and euro currency - if ( (DEFAULT_CURRENCY == 'EUR') && ($currency_type == 'DEM' || $currency_type == 'BEF' || $currency_type == 'LUF' || $currency_type == 'ESP' || $currency_type == 'FRF' || $currency_type == 'IEP' || $currency_type == 'ITL' || $currency_type == 'NLG' || $currency_type == 'ATS' || $currency_type == 'PTE' || $currency_type == 'FIM' || $currency_type == 'GRD') ) { - $format_string .= ' [' . $this->format($number, true, 'EUR') . ']'; - } } 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']; }