diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-10-05 11:22:10 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-10-05 11:22:10 -0400 |
commit | bae57838c2dd789064b246308c7cb3a33bba5b8e (patch) | |
tree | b43db60ada251debd3bf5d900d017b2cd29e421f /app/Controller/Config.php | |
parent | 8e5673e3d289e4d28b4fc9f20721bda9f1c858c7 (diff) |
Input date format is now a config parameter instead of the current locale
Diffstat (limited to 'app/Controller/Config.php')
-rw-r--r-- | app/Controller/Config.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Controller/Config.php b/app/Controller/Config.php index 869d4331..7c8373c3 100644 --- a/app/Controller/Config.php +++ b/app/Controller/Config.php @@ -78,6 +78,7 @@ class Config extends Base 'title' => t('Application settings'), 'languages' => $this->config->getLanguages(), 'timezones' => $this->config->getTimezones(), + 'date_formats' => $this->dateParser->getAvailableFormats(), ))); } |