Skip to content

Commit

Permalink
Fix string expected
Browse files Browse the repository at this point in the history
  • Loading branch information
Gomez committed Jun 24, 2015
1 parent 7035652 commit bbfab84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/Mail/lib/Horde/Mail/Transport/Mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function __construct(array $params = array())
public function send($recipients, array $headers, $body)
{
$headers = $this->_sanitizeHeaders($headers);
$recipients = $this->parseRecipients($recipients);
$recipients = implode(',', $this->parseRecipients($recipients));
$subject = '';

foreach (array_keys($headers) as $hdr) {
Expand Down

0 comments on commit bbfab84

Please sign in to comment.