aboutsummaryrefslogtreecommitdiff
path: root/configs/conferences/emf2018/config.php
diff options
context:
space:
mode:
authorMaZderMind2018-09-17 10:06:29 +0200
committerMaZderMind2018-09-17 10:06:40 +0200
commit4127652499db27661b3194b47ec9998d04a1b923 (patch)
treeda5548261b803c18c3a1dc71e8b18af9ccaf46cc /configs/conferences/emf2018/config.php
parent9d2a7b3e9a3b74abcb0bf3c8dac3965e41d347a8 (diff)
reset tz after emf config
Diffstat (limited to '')
-rw-r--r--configs/conferences/emf2018/config.php3
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;