From 2e5f64c9e42c4a0cf8a2541971e178a2a48e36ae Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Sun, 25 Aug 2013 10:03:15 +0200 Subject: Fix identity selection on reply (#1489291) --- CHANGELOG | 1 + program/steps/mail/compose.inc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 36276478c..3f095601a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 c9d8c0b45..9dadfe4ad 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -529,7 +529,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); -- cgit v1.2.3