diff options
author | svncommit <devs@roundcube.net> | 2009-05-12 13:26:07 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2009-05-12 13:26:07 +0000 |
commit | 617b4f699f2e47991c50e05528b1f9ecbc3c3d9c (patch) | |
tree | 83b540541b969d913ff42b0a0d3ad760a312e8f3 /program/steps/mail | |
parent | 78cdeba1a82dd744f59ebfe625a7d7dd8d23ff41 (diff) |
Minimize chance of race condition in session handling (#1485659, #1484678)
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 537199cc8..5e9bc8a70 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -1278,7 +1278,7 @@ function rcmail_compose_cleanup() rcmail::get_instance()->plugins->exec_hook('cleanup_attachments',array()); - unset($_SESSION['compose']); + rcube_sess_unset('compose'); } |