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/main.inc | |
parent | 949dea5803fd958d02372870c6b5b8a8ad6f8745 (diff) |
Added MSSQL support
Diffstat (limited to 'program/include/main.inc')
-rw-r--r-- | program/include/main.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/main.inc b/program/include/main.inc index 051d6e250..7458fe131 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -466,7 +466,7 @@ function rcmail_login($user, $pass, $host=NULL) // update user's record $DB->query("UPDATE ".get_table_name('users')." - SET last_login=now() + SET last_login=".$DB->now()." WHERE user_id=?", $user_id); } @@ -511,7 +511,7 @@ function rcmail_create_user($user, $host) $DB->query("INSERT INTO ".get_table_name('users')." (created, last_login, username, mail_host, alias, language) - VALUES (now(), now(), ?, ?, ?, ?)", + VALUES (".$DB->now().", ".$DB->now().", ?, ?, ?, ?)", $user, $host, $user_email, |