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
Incorrect warning issued for session_regenerate_id:
warning PHP5014: session_regenerate_id() expects 0 parameter(s), 1 given
public function regenerateId($deleteOldSession = true)
{
if ($this->sessionExists()) {
session_regenerate_id((bool) $deleteOldSession);
}
return $this;
}
Incorrect warning issued for session_regenerate_id:
warning PHP5014: session_regenerate_id() expects 0 parameter(s), 1 given
Reference to php manual:
https://www.php.net/manual/en/function.session-regenerate-id.php
The text was updated successfully, but these errors were encountered: