diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-08-25 10:03:15 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-08-25 10:04:04 +0200 |
commit | 5fd90b9a6b5279047b80b9b404b3d91052d61298 (patch) | |
tree | 292fbdea664d2d98fdd758370063901d4a9911a6 | |
parent | 70eac89a5c17d665fa94156fd215e171906428b0 (diff) |
Fix identity selection on reply (#1489291)
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/steps/mail/compose.inc | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Fix identity selection on reply (#1489291) - Fix so additional headers are added to all messages sent (#1489284) - Fix display issue after moving folder in Folder Manager (#1489293) - Fix handling of non-default date formats (#1489294) diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index fb76b9abb..dcfc03b28 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -511,7 +511,7 @@ function rcmail_compose_header_from($attrib) } } - $out = $select_from->show((int)$MESSAGE->compose['from']); + $out = $select_from->show($MESSAGE->compose['from']); // add signatures to client $OUTPUT->set_env('signatures', $a_signatures); |