From a049c63123f516bc659ceb65a135c3fb2217ac59 Mon Sep 17 00:00:00 2001 From: Gerhard Date: Wed, 12 Mar 2014 15:50:51 +0200 Subject: [PATCH] Remove opening bracket from AED currency symbol --- includes/wc-core-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/wc-core-functions.php b/includes/wc-core-functions.php index 41565ee1aec..aa8f7587c4e 100644 --- a/includes/wc-core-functions.php +++ b/includes/wc-core-functions.php @@ -220,7 +220,7 @@ function get_woocommerce_currency_symbol( $currency = '' ) { switch ( $currency ) { case 'AED' : - $currency_symbol = '(د.إ'; + $currency_symbol = 'د.إ'; break; case 'BRL' : $currency_symbol = 'R$';