We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa4b53f commit be0c60aCopy full SHA for be0c60a
src/Header.php
@@ -204,7 +204,7 @@ public function rfc822_parse_headers($raw_headers){
204
}else{
205
if (($pos = strpos($line, ":")) > 0) {
206
$key = trim(rtrim(strtolower(substr($line, 0, $pos))));
207
- $value = trim(rtrim(strtolower(substr($line, $pos + 1))));
+ $value = trim(rtrim(substr($line, $pos + 1)));
208
$headers[$key] = [$value];
209
$prev_header = $key;
210
}
0 commit comments