diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-06-05 09:10:08 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-06-05 09:10:08 +0200 |
commit | 42de33c7dee0dc48e54d317eefd4dac18c317e42 (patch) | |
tree | cb2c793151edcbddb1229f5b09d8c75a1d3768c4 /program/include/rcmail.php | |
parent | 9749da9fcc149266323df7dd2b8fb9406e37ca1b (diff) |
Add option to use PHP's native session save handlers
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 89f2f9647..a7ddb1e2a 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -746,7 +746,7 @@ class rcmail extends rcube // before closing the database connection, write session data if ($_SERVER['REMOTE_ADDR'] && is_object($this->session)) { - session_write_close(); + $this->session->write_close(); } // write performance stats to logs/console |