You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
session: close save handler before re-initializing an active session
php_session_initialize() set the status to active and called the save
handler's open() and read() without first closing a session that was
already active, so session_reset() left the earlier open() unmatched.
Abort the active session first, pairing every open() with a close().
ClosesGH-23597
0 commit comments