From f709c0293e37c01b057c0155f16aa8f68b9c8861 Mon Sep 17 00:00:00 2001 From: "info@eWallah.net" Date: Thu, 16 Mar 2023 19:53:41 +0100 Subject: [PATCH] MDL-77584 currencies: Fix outdated ISO 4217 code for Zambian Kwacha On 2013-01-01 the ZMK code got replaced by the new ZMW code. AMOS BEGIN MOV [ZMK,core_currencies],[ZMW,core_currencies] AMOS END --- lang/en/currencies.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/en/currencies.php b/lang/en/currencies.php index c5c3459a2b5..148a932b113 100644 --- a/lang/en/currencies.php +++ b/lang/en/currencies.php @@ -180,5 +180,5 @@ $string['XOF'] = 'CFA Franc BCEAO'; $string['XPF'] = 'CFP Franc'; $string['YER'] = 'Yemeni Rial'; $string['ZAR'] = 'South African Rand'; -$string['ZMK'] = 'Zambian Kwacha'; +$string['ZMW'] = 'Zambian Kwacha'; $string['ZWL'] = 'Zimbabwe Dollar';