diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-12-02 14:31:53 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-12-02 14:31:53 +0000 |
| commit | 18db62ce8f09f678b078babe81c5f77afe3ff819 (patch) | |
| tree | 554a73d7b052f87d1f5bfcea9324f1f8dd650604 /roundcubemail/program/steps/mail | |
| parent | df4f19ef692e9716a293dc874dbd7b5a9d345e3d (diff) | |
- Fix compose from addressbook, broken in r5521
git-svn-id: https://svn.roundcube.net/trunk@5530 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail')
| -rw-r--r-- | roundcubemail/program/steps/mail/compose.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/mail/compose.inc b/roundcubemail/program/steps/mail/compose.inc index d98452afc..4d54db4b6 100644 --- a/roundcubemail/program/steps/mail/compose.inc +++ b/roundcubemail/program/steps/mail/compose.inc @@ -346,9 +346,9 @@ foreach ($parts as $header) { // we have a set of recipients stored is session if ($header == 'to' && ($mailto_id = $COMPOSE['param']['mailto']) - && $COMPOSE[$mailto_id] + && $_SESSION['mailto'][$mailto_id] ) { - $fvalue = urldecode($COMPOSE[$mailto_id]); + $fvalue = urldecode($_SESSION['mailto'][$mailto_id]); $decode_header = false; } else if (!empty($_POST['_'.$header])) { |
