Skip to content

Commit

Permalink
Merge pull request #85 from alex-LE/master
Browse files Browse the repository at this point in the history
Fixed decoding of subject
  • Loading branch information
barbushin committed Jul 9, 2015
2 parents 5188586 + d3986c7 commit 47a3852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PhpImap/Mailbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ protected function initMailPart(IncomingMail $mail, $partStructure, $partNum, $m
$data = imap_base64($data);
}
elseif($partStructure->encoding == 4) {
$data = imap_qprint($data);
$data = quoted_printable_decode($data);
}

$params = array();
Expand Down

0 comments on commit 47a3852

Please sign in to comment.