Merge pull request #5116 from kloon/fix_AED_currency_symbol

Remove opening bracket from AED currency symbol
This commit is contained in:
Mike Jolley 2014-03-12 14:13:56 +00:00
commit 165b573c48
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ function get_woocommerce_currency_symbol( $currency = '' ) {
switch ( $currency ) {
case 'AED' :
$currency_symbol = '(د.إ';
$currency_symbol = 'د.إ';
break;
case 'BRL' :
$currency_symbol = 'R$';