[Locale] Adapted to latest Intl changes

This commit is contained in:
Bernhard Schussek 2013-03-15 16:16:16 +01:00
parent 2cd1be8df3
commit 0f6277f809
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ class StubLocale extends BaseStubLocale
foreach ($bundle->getCurrencyNames($locale) as $currency => $name) {
self::$currencies[$currency] = array(
'name' => $name,
'symbol' => $bundle->getCurrencySymbol($locale, $currency),
'symbol' => $bundle->getCurrencySymbol($currency, $locale),
'fractionDigits' => $bundle->getFractionDigits($currency),
'roundingIncrement' => $bundle->getRoundingIncrement($currency)
);