diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-06-16 14:18:57 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-06-16 14:18:57 +0200 |
commit | 3dbe4f79e42dc655444187e22356994a0d5c76ce (patch) | |
tree | b5d17825136b10b6224edbca1753d1fee1e0645d /program/include/rcmail.php | |
parent | ac1a962b51531ccbbaa6c41c329aa5f80859a39d (diff) |
Fix session issues when local and database time differs (#1486132)
Improve performance by executing session gc on script shutdown, also call session_write_close() ASAP
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index fd625ba4d..39d804d1f 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -749,11 +749,6 @@ class rcmail extends rcube $book->close(); } - // before closing the database connection, write session data - if ($_SERVER['REMOTE_ADDR'] && is_object($this->session)) { - $this->session->write_close(); - } - // write performance stats to logs/console if ($this->config->get('devel_mode')) { if (function_exists('memory_get_usage')) |