1
0
mirror of https://github.com/flarum/core.git synced 2025-07-23 09:41:26 +02:00

Fix redirect after logout

This commit is contained in:
Franz Liedke
2015-06-03 03:36:49 +02:00
parent eb7dc1a7fe
commit 239313d9fc

View File

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