[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

View File

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