From b89a000483030b34acd77f8ac3c6fc47f48a37b4 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Wed, 18 Aug 2021 20:47:16 -0400 Subject: [PATCH] Removed unnessesary quotes from currency_symbol var --- invoice.php | 2 +- quote.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/invoice.php b/invoice.php index ba800487..b6df2cb7 100644 --- a/invoice.php +++ b/invoice.php @@ -48,7 +48,7 @@ if(isset($_GET['invoice_id'])){ } $client_website = $row['client_website']; $client_currency_code = $row['client_currency_code']; - $client_currency_symbol = get_currency_symbol("$client_currency_code"); + $client_currency_symbol = get_currency_symbol($client_currency_code); $client_net_terms = $row['client_net_terms']; if($client_net_terms == 0){ $client_net_terms = $config_default_net_terms; diff --git a/quote.php b/quote.php index ba01ea47..04178b90 100644 --- a/quote.php +++ b/quote.php @@ -43,6 +43,7 @@ if(isset($_GET['quote_id'])){ } $client_website = $row['client_website']; $client_currency_code = $row['client_currency_code']; + $client_currency_symbol = get_currency_symbol("$client_currency_code"); $client_net_terms = $row['client_net_terms']; if($client_net_terms == 0){ $client_net_terms = $config_default_net_terms;