diff options
author | thomascube <thomas@roundcube.net> | 2006-08-30 17:41:21 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-08-30 17:41:21 +0000 |
commit | 107bde9cfd9a0392d18544b5a433552ce6f2f0a6 (patch) | |
tree | 3535c6d41d37502d4c20a6844d8652f219b84856 /program/include/rcube_imap.inc | |
parent | 949dea5803fd958d02372870c6b5b8a8ad6f8745 (diff) |
Added MSSQL support
Diffstat (limited to 'program/include/rcube_imap.inc')
-rw-r--r-- | program/include/rcube_imap.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/include/rcube_imap.inc b/program/include/rcube_imap.inc index 23636dc35..a11c74910 100644 --- a/program/include/rcube_imap.inc +++ b/program/include/rcube_imap.inc @@ -1764,7 +1764,7 @@ class rcube_imap { $this->db->query( "UPDATE ".get_table_name('cache')." - SET created=now(), + SET created=".$this->db->now().", data=? WHERE user_id=? AND cache_key=?", @@ -1778,7 +1778,7 @@ class rcube_imap $this->db->query( "INSERT INTO ".get_table_name('cache')." (created, user_id, cache_key, data) - VALUES (now(), ?, ?, ?)", + VALUES (".$this->db->now().", ?, ?, ?)", $_SESSION['user_id'], $key, $data); @@ -1967,7 +1967,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, ?, now(), ?, ?, ?, ?, ?, ?, ".$this->db->fromunixtime($headers->timestamp).", ?, ?, ?)", + VALUES (?, 0, ?, ".$this->db->now().", ?, ?, ?, ?, ?, ?, ".$this->db->fromunixtime($headers->timestamp).", ?, ?, ?)", $_SESSION['user_id'], $key, $index, |