diff options
| author | Frederic Guillot <fred@kanboard.net> | 2016-01-14 21:42:28 -0500 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2016-01-14 21:42:28 -0500 |
| commit | 9e24bb2ef08b86c6d1aa150fda5a05538f4882da (patch) | |
| tree | 88c5e575d58680359dca293c7971292cf08b0626 /app/Controller | |
| parent | a8f404421f3e404ccd285da861a8cb25f3642f31 (diff) | |
Do not cache app settings in session
Diffstat (limited to 'app/Controller')
| -rw-r--r-- | app/Controller/Currency.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Currency.php b/app/Controller/Currency.php index 3d0deeac..42e404f8 100644 --- a/app/Controller/Currency.php +++ b/app/Controller/Currency.php @@ -38,7 +38,7 @@ class Currency extends Base 'values' => $values, 'errors' => $errors, 'rates' => $this->currency->getAll(), - 'currencies' => $this->config->getCurrencies(), + 'currencies' => $this->currency->getCurrencies(), 'title' => t('Settings').' > '.t('Currency rates'), ))); } |
