mirror of https://github.com/itflow-org/itflow
Removed unnessesary quotes from currency_symbol var
This commit is contained in:
parent
08aeccf4b0
commit
b89a000483
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue