Changeset 2919
- Timestamp:
- 06/26/2008 11:50:43 AM (5 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Session.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Session.php
r2899 r2919 240 240 $_SESSION['session_id'] = self::$driver->regenerate(); 241 241 } 242 243 // Get the session name 244 $name = session_name(); 245 246 if (isset($_COOKIE[$name])) 247 { 248 // Change the cookie value to match the new session id to remove the "lag time" 249 $_COOKIE[$name] = $_SESSION['session_id']; 250 } 242 251 } 243 252
