diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-11-21 18:19:30 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-11-21 18:19:30 +0000 |
| commit | e00d46500c4740745ef34e70f5db783fae0a291c (patch) | |
| tree | 32490e1b94aae3024dc621817c95f0b35423506b /roundcubemail/program/include/rcube_imap.php | |
| parent | c8fb75d8b8c4b52b2460e71b91146cbcb579410a (diff) | |
- Increase speed of session destroy and garbage clean up
- Fix session timeout when DB server got clock skew (#1485490)
git-svn-id: https://svn.roundcube.net/trunk@2076 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_imap.php')
| -rw-r--r-- | roundcubemail/program/include/rcube_imap.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php index d8845cc74..c3d599180 100644 --- a/roundcubemail/program/include/rcube_imap.php +++ b/roundcubemail/program/include/rcube_imap.php @@ -2146,7 +2146,7 @@ class rcube_imap { $this->db->query( "UPDATE ".get_table_name('cache')." - SET created=".$this->db->now().", data=?, session_id=? + SET created=". $this->db->fromunixtime(time()).", data=?, session_id=? WHERE user_id=? AND cache_key=?", $data, @@ -2160,7 +2160,7 @@ class rcube_imap $this->db->query( "INSERT INTO ".get_table_name('cache')." (created, user_id, cache_key, data, session_id) - VALUES (".$this->db->now().", ?, ?, ?, ?)", + VALUES (".$this->db->fromunixtime(time()).", ?, ?, ?, ?)", $_SESSION['user_id'], $key, $data, @@ -2374,7 +2374,7 @@ class rcube_imap $this->db->query( "INSERT INTO ".get_table_name('messages')." (user_id, del, cache_key, created, idx, uid, subject, ".$this->db->quoteIdentifier('from').", ".$this->db->quoteIdentifier('to').", cc, date, size, headers, structure) - VALUES (?, 0, ?, ".$this->db->now().", ?, ?, ?, ?, ?, ?, ".$this->db->fromunixtime($headers->timestamp).", ?, ?, ?)", + VALUES (?, 0, ?, ".$this->db->fromunixtime(time()).", ?, ?, ?, ?, ?, ?, ".$this->db->fromunixtime($headers->timestamp).", ?, ?, ?)", $_SESSION['user_id'], $key, $index, |
