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/config.php | |
parent | b4784d39e11c2d576076930bb700bf146321bf62 (diff) |
Fixed timezone warning by adding timezone config option
Diffstat (limited to 'controllers/config.php')
-rw-r--r-- | controllers/config.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/controllers/config.php b/controllers/config.php index e01b2082..51a04079 100644 --- a/controllers/config.php +++ b/controllers/config.php @@ -15,7 +15,8 @@ class Config extends Base 'values' => $this->config->getAll(), 'errors' => array(), 'menu' => 'config', - 'title' => t('Settings') + 'title' => t('Settings'), + 'timezones' => array_combine(timezone_identifiers_list(), timezone_identifiers_list()) ))); } @@ -32,8 +33,7 @@ class Config extends Base if ($this->config->save($values)) { $this->config->reload(); $this->session->flash(t('Settings saved successfully.')); - } - else { + } else { $this->session->flashError(t('Unable to save your settings.')); } @@ -48,7 +48,8 @@ class Config extends Base 'values' => $values, 'errors' => $errors, 'menu' => 'config', - 'title' => t('Settings') + 'title' => t('Settings'), + 'timezones' => array_combine(timezone_identifiers_list(), timezone_identifiers_list()) ))); } |