Skip to content

Commit

Permalink
Bug #12942: Fix saving recipients in drafts in smartmobile view
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Jan 29, 2014
1 parent d4e52cb commit a7484b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions imp/lib/Compose.php
Expand Up @@ -1305,8 +1305,8 @@ public function recipientList($hdr)

foreach (array('to', 'cc', 'bcc') as $key) {
if (isset($hdr[$key])) {
if (strlen(trim($hdr[$key]))) {
$ob = IMP::parseAddressList($hdr[$key]);
$ob = IMP::parseAddressList($hdr[$key]);
if (count($ob)) {
$addrlist->add($ob);
$header[$key] = $ob;
$has_input = true;
Expand Down

0 comments on commit a7484b5

Please sign in to comment.