From 5fd90b9a6b5279047b80b9b404b3d91052d61298 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Sun, 25 Aug 2013 04:04:04 -0400
Subject: [PATCH] Fix identity selection on reply (#1489291)

---
 CHANGELOG                      |    1 +
 program/steps/mail/compose.inc |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index acd543d..f32b729 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 fb76b9a..dcfc03b 100644
--- a/program/steps/mail/compose.inc
+++ b/program/steps/mail/compose.inc
@@ -511,7 +511,7 @@
       }
     }
 
-    $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);

--
Gitblit v1.9.1