Warning: Illegal string offset 'CURRENCY_CODE' in Drupal\commerce_currency_switcher\Form\CurrencySwitchForm->buildForm() (line 82 of modules/contrib/commerce_currency_switcher/src/Form/CurrencySwitchForm.php).
The $currency_list variable should be an empty array instead of an empty string or else it breaks the switcher.
$currency_list = ''; on line 68 in CurrencySwitchForm.php should instead be $currency_list = [];
Maby I should commit a patch in the future ?
Hope this info helps someone trying to use this.
Thanks for the module, works great after this fix!
Comments
Comment #2
sumanthkumarc commented@desiboli, Yeah, you could provide a patch, so that i could give you commit credit for the issue :)
Comment #4
sumanthkumarc commentedCommitted and thanks for reporting an issue. Appreciate it.