diff options
Diffstat (limited to '')
-rw-r--r-- | configs/conferences/emf2018/config.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configs/conferences/emf2018/config.php b/configs/conferences/emf2018/config.php index b38e754..b1d2362 100644 --- a/configs/conferences/emf2018/config.php +++ b/configs/conferences/emf2018/config.php @@ -1,5 +1,6 @@ <?php +$prev_tz = date_default_timezone_get(); date_default_timezone_set('Europe/London'); $CONFIG['CONFERENCE'] = array( /** @@ -254,5 +255,5 @@ $CONFIG['SCHEDULE'] = array( 'SIMULATE_OFFSET' => 0, ); - +date_default_timezone_set($prev_tz); return $CONFIG; |