From: Dave Greenberg Date: Mon, 12 Aug 2013 00:43:13 +0000 (-0700) Subject: Fix sort order for currency multi-select X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=c11164f3dd018ce1ae04801f83d1f15857d7d02e;p=civicrm-core.git Fix sort order for currency multi-select --- diff --git a/CRM/Core/Config/Variables.php b/CRM/Core/Config/Variables.php index 5cfca7852b..0ea6b769cc 100644 --- a/CRM/Core/Config/Variables.php +++ b/CRM/Core/Config/Variables.php @@ -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, '');