From: Michael M Slusarz Date: Fri, 5 Feb 2010 20:09:10 +0000 (-0700) Subject: Fix determination of reply_all usage X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a8570f08ba3fb1c54a6edf7a656cf33ac71267e0;p=horde.git Fix determination of reply_all usage --- diff --git a/imp/lib/Compose.php b/imp/lib/Compose.php index dfe8809ba..864b23e43 100644 --- a/imp/lib/Compose.php +++ b/imp/lib/Compose.php @@ -1415,7 +1415,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), ' ,');