Skip to content
Snippets Groups Projects
Commit 1f3016bb authored by Tim Steiner's avatar Tim Steiner
Browse files

Fix redirect urls to not be empty.

parent 65c3289c
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ class Auth_IndexController extends App_Controller_Action {
public function logoutAction()
{
Zend_Auth::getInstance()->clearIdentity();
$this->_redirect('');
$this->_redirect('/');
}
public function validateAction()
......@@ -53,7 +53,7 @@ class Auth_IndexController extends App_Controller_Action {
return;
}
$this->_redirect('');
$this->_redirect('/');
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment