Skip to content
Snippets Groups Projects
Commit 36b2526e authored by Dave Greenberg's avatar Dave Greenberg
Browse files

Merge pull request #1392 from davecivicrm/CRM-13144

Fix sort order for currency multi-select
parents cd4bfec7 c11164f3
Branches
Tags
No related merge requests found
......@@ -492,7 +492,7 @@ class CRM_Core_Config_Variables extends CRM_Core_Config_Defaults {
if ($this->defaultCurrency || $defaultCurrency) {
$this->currencySymbols = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'currency', array(
'labelColumn' => 'symbol',
'orderColumn' => FALSE,
'orderColumn' => TRUE,
));
$currency = $defaultCurrency ? $defaultCurrency : $this->defaultCurrency;
$cachedSymbol = CRM_Utils_Array::value($currency, $this->currencySymbols, '');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment