CC-3955: System -> Preferences: Timezone setting is the first one in the list,
not the current (local) timezone. - fixed
This commit is contained in:
parent
c669d3cb47
commit
b081a9eb5f
|
@ -318,8 +318,9 @@ class AirtimeInstall
|
|||
|
||||
public static function SetDefaultTimezone()
|
||||
{
|
||||
$con = Propel::getConnection();
|
||||
$defaultTimezone = exec("cat /etc/timezone");
|
||||
$con = Propel::getConnection();
|
||||
// we need to run php as commandline because we want to get the timezone in cli php.ini file
|
||||
$defaultTimezone = exec("php -r 'echo date_default_timezone_get().PHP_EOL;'");
|
||||
$sql = "INSERT INTO cc_pref (keystr, valstr) VALUES ('timezone', '$defaultTimezone')";
|
||||
$result = $con->exec($sql);
|
||||
if ($result < 1) {
|
||||
|
|
Loading…
Reference in New Issue