diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-16 17:53:35 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-16 17:53:35 +0000 |
| commit | adcdcdeb9959baf419b9870891694a4a02564bd2 (patch) | |
| tree | 7cb845b8c56125a5cd5927920260ca255df942c6 /roundcubemail/program/steps/mail/attachments.inc | |
| parent | 6fb2a86d88a072e3aa69fcd037cbacdb321ee353 (diff) | |
Fix session race conditions when composing new messages
git-svn-id: https://svn.roundcube.net/trunk@5226 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail/attachments.inc')
| -rw-r--r-- | roundcubemail/program/steps/mail/attachments.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/attachments.inc b/roundcubemail/program/steps/mail/attachments.inc index 4674034a1..ffb164279 100644 --- a/roundcubemail/program/steps/mail/attachments.inc +++ b/roundcubemail/program/steps/mail/attachments.inc @@ -25,7 +25,7 @@ if (!empty($_GET['_progress'])) { } $COMPOSE_ID = get_input_value('_id', RCUBE_INPUT_GPC); -$_SESSION['compose'] = $_SESSION['compose_data'][$COMPOSE_ID]; +$_SESSION['compose'] = $_SESSION['compose_data_'.$COMPOSE_ID]; if (!$_SESSION['compose']) { die("Invalid session var!"); |
