diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-09-19 20:45:40 +0200 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-09-19 20:45:40 +0200 |
commit | 9ffa63747ae5a5ecfe8ac3e6a3276ade80e6980b (patch) | |
tree | 5c900006fc24daac1d212a0de17f6d6b70c1a9cd /app/Controller/Base.php | |
parent | 082fda68ca52e8ace083256c57fd0da9991cde7b (diff) | |
parent | ed13a04c4c7906c190c4a02acecb27a77b3bdb2a (diff) |
Merge pull-request #274 (url redirection/session expired)
Diffstat (limited to 'app/Controller/Base.php')
-rw-r--r-- | app/Controller/Base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Base.php b/app/Controller/Base.php index 1ef54d8e..93749ea6 100644 --- a/app/Controller/Base.php +++ b/app/Controller/Base.php @@ -124,7 +124,7 @@ abstract class Base // Authentication if (! $this->authentication->isAuthenticated($controller, $action)) { - $this->response->redirect('?controller=user&action=login'); + $this->response->redirect('?controller=user&action=login&redirect_query='.urlencode($this->request->getQueryString())); } // Check if the user is allowed to see this page |