Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Decode.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public static function splitMessage($message, &$headers, &$body, $EOL = Mime::LI

// see @ZF2-372, pops the first line off a message if it doesn't contain a header
if (!$strict) {
$parts = explode(': ', $firstline, 2);
$parts = explode(':', $firstline, 2);
if (count($parts) != 2) {
$message = substr($message, strpos($message, $EOL)+1);
}
Expand Down

0 comments on commit ded697e

Please sign in to comment.