1
0
mirror of https://github.com/flarum/core.git synced 2025-02-25 19:53:48 +01:00

Fix redirect after logout

This commit is contained in:
Franz Liedke 2015-06-03 03:36:49 +02:00
parent ed79f7c4ea
commit 82ccf28072

View File

@ -17,6 +17,6 @@ class LogoutAction extends BaseAction
event(new UserLoggedOut($user));
}
return $this->withForgetCookie($this->redirectTo(''));
return $this->withForgetCookie($this->redirectTo('/'));
}
}