diff --git a/commerce.module b/commerce.module index 5a7ffae..1b24ca7 100644 --- a/commerce.module +++ b/commerce.module @@ -461,6 +461,9 @@ function commerce_currencies($enabled = FALSE, $reset = FALSE) { $currencies['all'][$currency_code] = array_merge($defaults, $currency); } + // Sort the currencies + ksort($currencies['all']); + cache_set('commerce_currencies:' . $language->language, $currencies['all']); }