summaryrefslogtreecommitdiff
path: root/roundcubemail/index.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-03-01 19:04:34 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-03-01 19:04:34 +0000
commit9db8e2d524cc25b445f02848e4963e9cb62ed32d (patch)
tree96850c4425d97f89fe1bd39c3882d9ac304ca013 /roundcubemail/index.php
parentff1dc41c6108ebf975d6a6996680b6560abf506d (diff)
- Improve performance by avoiding unnecessary updates to the session table (#1486325)
git-svn-id: https://svn.roundcube.net/trunk@3296 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/index.php')
-rw-r--r--roundcubemail/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/index.php b/roundcubemail/index.php
index 8d3e10acd..fe7f6b5fa 100644
--- a/roundcubemail/index.php
+++ b/roundcubemail/index.php
@@ -96,8 +96,8 @@ if ($RCMAIL->task == 'login' && $RCMAIL->action == 'login') {
!empty($auth['host']) && !empty($auth['user']) &&
$RCMAIL->login($auth['user'], $auth['pass'], $auth['host'])) {
// create new session ID
- rcube_sess_unset('temp');
- rcube_sess_regenerate_id();
+ $RCMAIL->session->remove('temp');
+ $RCMAIL->session->regenerate_id();
// send auth cookie if necessary
$RCMAIL->authenticate_session();