From 853530cece39ff11b1311234ff089e63f690eab9 Mon Sep 17 00:00:00 2001 From: Shiva Poudel Date: Thu, 12 Nov 2015 03:00:54 +0545 Subject: [PATCH] Fixed rupee sign for currency in product data sale and regular price --- 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 8789d5b7e6a..077fe9cedb4 100644 --- a/includes/wc-core-functions.php +++ b/includes/wc-core-functions.php @@ -408,7 +408,7 @@ function get_woocommerce_currency_symbol( $currency = '' ) { break; case 'NPR' : case 'PKR' : - $currency_symbol = '₨'; + $currency_symbol = '₨'; break; case 'PHP' : $currency_symbol = '₱';