We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The logout page 301 redirect is saved in the browser cache. Therefore the user cannot logout a second time. Redirect needs to be changed to:
header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0'); header("HTTP/1.1 303 See Other")
The text was updated successfully, but these errors were encountered:
cyklokoalicia#136 Fix incorrect redirect type
3aefd53
Merge pull request #137 from pato1/bugfix/136/logout-redirect
9d75ff6
#136 Fix incorrect redirect type
302 is the correct code, not 303
Sorry, something went wrong.
fixed by the latest commit/pull request, closing
No branches or pull requests
The logout page 301 redirect is saved in the browser cache. Therefore the user cannot logout a second time. Redirect needs to be changed to:
header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0'); header("HTTP/1.1 303 See Other")
The text was updated successfully, but these errors were encountered: