do not regenerate session id

This commit is contained in:
coderkun 2014-02-14 19:52:05 +01:00
commit fc22eab443

View file

@ -13,7 +13,7 @@
/** /**
* Component to handle authentication and authorization * Component to handle authentication and authorization.
* *
* @author Oliver Hanraths <oliver.hanraths@uni-duesseldorf.de> * @author Oliver Hanraths <oliver.hanraths@uni-duesseldorf.de>
*/ */
@ -37,7 +37,6 @@
// Start session // Start session
if(session_id() === '') { if(session_id() === '') {
session_start(); session_start();
session_regenerate_id(true);
} }
} }