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
sfSessionStorage::regenerate() does not check if session has been started, this results in warning "Cannot regenerate session id - session is not active".
This happens when logging in system user within a task.
First line of the method should be: if (self::$sessionIdRegenerated || !self::$sessionStarted)
The text was updated successfully, but these errors were encountered:
sfSessionStorage::regenerate() does not check if session has been started, this results in warning "Cannot regenerate session id - session is not active".
This happens when logging in system user within a task.
First line of the method should be:
if (self::$sessionIdRegenerated || !self::$sessionStarted)
The text was updated successfully, but these errors were encountered: