summaryrefslogtreecommitdiff
path: root/program/include/main.inc
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2006-09-08 15:16:47 +0000
committerthomascube <thomas@roundcube.net>2006-09-08 15:16:47 +0000
commit7139e33e6c7dcd206e166416e7b5742bc3849cb9 (patch)
treee48e620ea095afa82804908736e8ce5a69bc5d35 /program/include/main.inc
parent8acab006085216223111baccc19bc834807b62fc (diff)
Updated MDB2 with MSSQL support + some cosmetics
Diffstat (limited to 'program/include/main.inc')
-rw-r--r--program/include/main.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/main.inc b/program/include/main.inc
index c084588cf..02f5b5713 100644
--- a/program/include/main.inc
+++ b/program/include/main.inc
@@ -185,7 +185,7 @@ function rcmail_authenticate_session()
// renew auth cookie every 5 minutes (only for GET requests)
if (!$valid || ($_SERVER['REQUEST_METHOD']!='POST' && $now-$_SESSION['auth_time'] > 300))
{
- $_SESSION['last_auth'] = $_SESSION['auth_time'];
+ $_SESSION['last_auth'] = $_SESSION['auth_time'];
$_SESSION['auth_time'] = $now;
setcookie('sessauth', rcmail_auth_hash(session_id(), $now));
}