Skip to content

Commit

Permalink
Fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Jan 22, 2014
1 parent 10aa6f7 commit 4335620
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions imp/lib/Compose.php
Expand Up @@ -1302,10 +1302,13 @@ public function recipientList($hdr)
foreach (array('to', 'cc', 'bcc') as $key) {
if (isset($hdr[$key])) {
if (strlen(trim($hdr[$key]))) {
$addrlist->add(IMP::parseAddressList($hdr[$key]));
$ob = IMP::parseAddressList($hdr[$key]);
$addrlist->add($ob);
$header[$key] = $ob;
$has_input = true;
} else {
$header[$key] = null;
}
$header[$key] = $obs;
}
}

Expand Down

0 comments on commit 4335620

Please sign in to comment.