Fix Wrong Timezone var name
This commit is contained in:
@@ -52,10 +52,10 @@ $session_company_name = $row['company_name'];
|
|||||||
$session_company_country = $row['company_country'];
|
$session_company_country = $row['company_country'];
|
||||||
$session_company_locale = $row['company_locale'];
|
$session_company_locale = $row['company_locale'];
|
||||||
$session_company_currency = $row['company_currency'];
|
$session_company_currency = $row['company_currency'];
|
||||||
$session_timezone = $row['settings_timezone'];
|
$session_timezone = $row['config_timezone'];
|
||||||
|
|
||||||
// Set Timezone to the companies timezone
|
// Set Timezone to the companies timezone
|
||||||
date_default_timezone_set('$session_timezone');
|
date_default_timezone_set($session_timezone);
|
||||||
|
|
||||||
//Set Currency Format
|
//Set Currency Format
|
||||||
$currency_format = numfmt_create($session_company_locale, NumberFormatter::CURRENCY);
|
$currency_format = numfmt_create($session_company_locale, NumberFormatter::CURRENCY);
|
||||||
|
|||||||
Reference in New Issue
Block a user