diff options
| author | robin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-05-12 13:26:07 +0000 |
|---|---|---|
| committer | robin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-05-12 13:26:07 +0000 |
| commit | 82c54c30aa2542811e2ae7682ee93c1e0e219526 (patch) | |
| tree | 19d3a8c5eb535193d08bab4018df80fa20cd4b03 /roundcubemail/program/include/rcmail.php | |
| parent | 90a1f937f3cf0372197e25a75c089376de6c6bf0 (diff) | |
Minimize chance of race condition in session handling (#1485659, #1484678)
git-svn-id: https://svn.roundcube.net/trunk@2467 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcmail.php')
| -rw-r--r-- | roundcubemail/program/include/rcmail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcmail.php b/roundcubemail/program/include/rcmail.php index e660e52c5..45b59ae49 100644 --- a/roundcubemail/program/include/rcmail.php +++ b/roundcubemail/program/include/rcmail.php @@ -124,7 +124,7 @@ class rcmail // reset some session parameters when changing task if ($_SESSION['task'] != $this->task) - unset($_SESSION['page']); + rcube_sess_unset('page'); // set current task to session $_SESSION['task'] = $this->task; |
