diff options
author | thomascube <thomas@roundcube.net> | 2008-05-17 17:46:43 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-05-17 17:46:43 +0000 |
commit | 8fa58e72a333d753ec406d0725ac9c1b40ab6d9a (patch) | |
tree | a99d7187d1662ef4d9ee1d9bca77d5a3260227c8 /program/include/session.inc | |
parent | e2f958ced1af82b6e1ce27454148e7b8065823f5 (diff) |
New class rcube_message representing a mail message; changed global $MESSAGE from array to object
Diffstat (limited to 'program/include/session.inc')
-rw-r--r-- | program/include/session.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/session.inc b/program/include/session.inc index a789fd2d7..ef8eb2726 100644 --- a/program/include/session.inc +++ b/program/include/session.inc @@ -88,7 +88,7 @@ function sess_write($key, $vars) VALUES (?, ?, ?, ".$DB->now().", ".$DB->now().")", $key, $vars, - $_SERVER['REMOTE_ADDR']); + (string)$_SERVER['REMOTE_ADDR']); } return TRUE; |