diff options
author | rzeka <piotr@rzeka.net> | 2014-02-24 21:08:56 +0100 |
---|---|---|
committer | rzeka <piotr@rzeka.net> | 2014-02-24 21:08:56 +0100 |
commit | e374a6fd6499b50d4587d136490ced7444f8bc2b (patch) | |
tree | 9e620688d4291c4d2877b7156776f00438092f9e /controllers/base.php | |
parent | b4784d39e11c2d576076930bb700bf146321bf62 (diff) |
Fixed timezone warning by adding timezone config option
Diffstat (limited to 'controllers/base.php')
-rw-r--r-- | controllers/base.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/controllers/base.php b/controllers/base.php index c248ede1..c4a69bf0 100644 --- a/controllers/base.php +++ b/controllers/base.php @@ -67,6 +67,10 @@ abstract class Base $language = $this->config->get('language', 'en_US'); if ($language !== 'en_US') \Translator\load($language); + //set timezone + $timezone = $this->config->get('timezone', 'UTC'); + date_default_timezone_set($timezone); + $this->response->csp(); $this->response->nosniff(); $this->response->xss(); |