🕸Fergus Duniho wrote on Sun, Apr 29, 2012 12:00 PM UTC:
I have fixed a bug in the login function that would stop new sessions from
being created. I replaced "session_destroy(); session_start();" with
"$_SESSION = array()". This clears the contents of the session without
trying to start a new one, which may be undoable once content appears on
the webpage, because it may involve changing the value of a cookie.