Skip to content
New issue

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

Session Errors in log #1

Open
smatthiesen opened this issue Jun 13, 2016 · 1 comment
Open

Session Errors in log #1

smatthiesen opened this issue Jun 13, 2016 · 1 comment

Comments

@smatthiesen
Copy link
Collaborator

Line 138 where we call session_destroy results in a ton of errors in log entries because we don't have session_start occurring before it.
Adding session_start right before session_destroy should fix this error that pops up a ton

@smassey-isn
Copy link
Collaborator

I wonder if this would do the trick:
if (session_status() == PHP_SESSION_ACTIVE) {
session_destroy();
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants