default currency support using default settings
This commit is contained in:
parent
0ac18ac850
commit
d2aa3e21e2
|
|
@ -305,7 +305,8 @@
|
||||||
$accountcode = (strlen(urldecode($xml->variables->accountcode)))?check_str(urldecode($xml->variables->accountcode)):$domain_name;
|
$accountcode = (strlen(urldecode($xml->variables->accountcode)))?check_str(urldecode($xml->variables->accountcode)):$domain_name;
|
||||||
$db2->sql = "SELECT currency FROM v_billings WHERE type_value='$accountcode'";
|
$db2->sql = "SELECT currency FROM v_billings WHERE type_value='$accountcode'";
|
||||||
$db2->result = $db2->execute();
|
$db2->result = $db2->execute();
|
||||||
$billing_currency = (strlen($db2->result[0]['currency'])?$db2->result[0]['currency']:'USD');
|
$default_currency = (strlen($_SESSION['billing']['currency']['text'])?$_SESSION['billing']['currency']['text']:'USD');
|
||||||
|
$billing_currency = (strlen($db2->result[0]['currency'])?$db2->result[0]['currency']:$default_currency);
|
||||||
|
|
||||||
if ($debug) {
|
if ($debug) {
|
||||||
echo "sql: " . $db2->sql . "\n";
|
echo "sql: " . $db2->sql . "\n";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue