diff options
author | thomascube <thomas@roundcube.net> | 2011-03-10 20:21:21 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-03-10 20:21:21 +0000 |
commit | 4591de7018414267311b421ef42ef1b4a2f6aa89 (patch) | |
tree | 1c5c723c52a626b0ebafe379ddf7fe6382b064bb /program/include/rcmail.php | |
parent | 8381ec1254f816bea2a5e85acb0a54722d327a60 (diff) |
Prepare for multiple concurrent compose windows
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 980efe43d..d9bb30bbe 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -1078,8 +1078,10 @@ class rcmail $this->imap->close(); // before closing the database connection, write session data - if ($_SERVER['REMOTE_ADDR']) + if ($_SERVER['REMOTE_ADDR']) { + $this->session->cleanup(); session_write_close(); + } // write performance stats to logs/console if ($this->config->get('devel_mode')) { |