From: Michael M Slusarz Date: Tue, 9 Feb 2010 07:03:42 +0000 (-0700) Subject: Fix logic X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=9ee46a6a40a4b09ca365659ebf8de750aeb15fcf;p=horde.git Fix logic --- diff --git a/imp/lib/Compose.php b/imp/lib/Compose.php index 85e1f2152..e29b1881e 100644 --- a/imp/lib/Compose.php +++ b/imp/lib/Compose.php @@ -1425,7 +1425,7 @@ class IMP_Compose } } - if (empty($header['to']) || (count($hdr_cc) > 1)) { + if (empty($header['to']) && (count($hdr_cc) > 1)) { $reply_type = 'reply_all'; } $header[empty($header['to']) ? 'to' : 'cc'] = rtrim(implode('', $hdr_cc), ' ,');