Session handler assigned by session_set_save_handler().

This function is used to close the current session. Because Drupal stores session data in the database immediately on write, this function does not need to do anything.

This function should not be called directly.

Return value

This function will always return TRUE.

1 string reference to '_drupal_session_close'
drupal_session_initialize in includes/session.inc
Initializes the session handler, starting a session if needed.

File

includes/session.inc, line 47
User session handling functions.

Code

function _drupal_session_close() {
  return TRUE;
}