diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-04-18 10:29:01 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-04-18 10:29:01 -0400 |
commit | ede4a9a93d03a3efa6a364e36f178ed448a1d259 (patch) | |
tree | 50c6af63b8fbed749f94369061840596e31a803a /app | |
parent | 219a43d7d6e8d48867819ede3c0d090774761639 (diff) |
Fix wrong login url for expired session
Diffstat (limited to 'app')
-rw-r--r-- | app/Template/layout.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/layout.php b/app/Template/layout.php index 1cdcc249..f87107a6 100644 --- a/app/Template/layout.php +++ b/app/Template/layout.php @@ -30,7 +30,7 @@ <title><?= isset($title) ? $this->e($title) : 'Kanboard' ?></title> </head> <body data-status-url="<?= $this->u('app', 'status') ?>" - data-login-url="<?= $this->u('user', 'login') ?>" + data-login-url="<?= $this->u('auth', 'login') ?>" data-timezone="<?= $this->getTimezone() ?>" data-js-lang="<?= $this->jsLang() ?>"> |