From 99ec176a5de2bff2fe0e5f83c6ed5b92e6062abf Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Mon, 21 Jun 2010 16:03:45 +0000 Subject: #813492 follow-up by chx, marcingy, c960657: Fixed HTTPS sessions use an invalid merge query. --- modules/system/system.install | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'modules/system/system.install') diff --git a/modules/system/system.install b/modules/system/system.install index 6c44e0c43..434787605 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -1414,14 +1414,14 @@ function system_schema() { 'not null' => TRUE, ), 'sid' => array( - 'description' => "Primary key: A session ID. The value is generated by PHP's Session API.", + 'description' => "A session ID. The value is generated by PHP's Session API.", 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', ), 'ssid' => array( - 'description' => "Unique key: Secure session ID. The value is generated by PHP's Session API.", + 'description' => "Secure session ID. The value is generated by PHP's Session API.", 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, @@ -1460,6 +1460,7 @@ function system_schema() { 'indexes' => array( 'timestamp' => array('timestamp'), 'uid' => array('uid'), + 'ssid' => array('ssid'), ), 'foreign keys' => array( 'uid' => array('users' => 'uid'), -- cgit v1.2.3