Fixed [Belarusian Ruble] Currency code

Thank you for reporting this issue. The issue is now resolved and we are aiming to include that in a future XF release (2.0.12).

Change log:
Fix currency code for Belarusian Ruble (BYR => BYN)
Any changes made as a result of this issue being resolved may not be rolled out here until later.
 
File: src/XF/Data/Currency.php
Line: 70
Find
'BYN' => ['code' => 'BYR', 'symbol' => 'BYR', 'precision' => 0, 'phrase' => 'currency.byn'],
Replace
'BYN' => ['code' => 'BYN', 'symbol' => 'BYN', 'precision' => 0, 'phrase' => 'currency.byn'],
 
Top Bottom