From: Michael M Slusarz Date: Tue, 3 Aug 2010 01:55:56 +0000 (-0600) Subject: Fix setting header fields in dimp compose page. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=db37b00b9e093e78e8d2be7bb7053fb3224827f5;p=horde.git Fix setting header fields in dimp compose page. --- diff --git a/imp/compose-dimp.php b/imp/compose-dimp.php index 47c01d435..d20fa58cd 100644 --- a/imp/compose-dimp.php +++ b/imp/compose-dimp.php @@ -43,7 +43,7 @@ $compose_disable = !IMP::canCompose(); /* The headers of the message. */ $header = array(); foreach (array('to', 'cc', 'bcc', 'subject') as $v) { - $header[$v] = $vars->$v; + $header[$v] = strval($vars->$v); } $fillform_opts = array('noupdate' => 1);