projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c94d48
)
Fix logic.
author
Michael M Slusarz
<slusarz@curecanti.org>
Mon, 15 Dec 2008 18:38:54 +0000
(11:38 -0700)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Mon, 15 Dec 2008 18:38:54 +0000
(11:38 -0700)
imp/lib/Compose.php
patch
|
blob
|
history
diff --git
a/imp/lib/Compose.php
b/imp/lib/Compose.php
index
653bdbb
..
ce83955
100644
(file)
--- a/
imp/lib/Compose.php
+++ b/
imp/lib/Compose.php
@@
-1217,7
+1217,7
@@
class IMP_Compose
$hdr_cc[] = $ob['address'] . ', ';
}
}
- $header[
isset($header['to']) ? 'cc' : 'to
'] = rtrim(implode('', $hdr_cc), ' ,');
+ $header[
empty($header['to']) ? 'to' : 'cc
'] = rtrim(implode('', $hdr_cc), ' ,');
/* Build the Bcc: header. */
$header['bcc'] = Horde_Mime_Address::addrArray2String($h->getOb('bcc') + $identity->getBccAddresses(), $all_addrs);