Skip to content

Commit

Permalink
wrapping
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Jan 29, 2014
1 parent 710219e commit fb26dd8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion imp/lib/Compose.php
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,11 @@ protected function _saveDraftMsg($headers, $message, $opts)
'validate' => true
));
} catch (Horde_Mail_Exception $e) {
throw new IMP_Compose_Exception(sprintf(_("Saving the message failed because it contains an invalid e-mail address: %s."), strval($val), $e->getMessage()), $e->getCode());
throw new IMP_Compose_Exception(sprintf(
_("Saving the message failed because it contains an invalid e-mail address: %s."),
strval($val),
$e->getMessage()
), $e->getCode());
}
}
}
Expand Down

0 comments on commit fb26dd8

Please sign in to comment.