Index: includes/bootstrap.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/bootstrap.inc,v retrieving revision 1.89 diff -u -p -r1.89 bootstrap.inc --- includes/bootstrap.inc 26 Mar 2006 14:11:38 -0000 1.89 +++ includes/bootstrap.inc 29 Mar 2006 09:29:03 -0000 @@ -698,6 +698,8 @@ function _drupal_bootstrap($phase) { case DRUPAL_BOOTSTRAP_SESSION: require_once './includes/session.inc'; session_set_save_handler("sess_open", "sess_close", "sess_read", "sess_write", "sess_destroy", "sess_gc"); + // Add a unique session name. Session names only accept alphanumeric characters. + session_name(preg_replace('/[^a-zA-Z0-9]/', '', conf_init())); session_start(); break;