mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-10-06 11:45:48 +08:00
Merge pull request #1322 from cpt-lamar/patch-1
Fix incorrect handling of multi-line Header
This commit is contained in:
commit
b7449fcdbf
1 changed files with 1 additions and 1 deletions
|
@ -788,7 +788,7 @@ END;
|
||||||
{
|
{
|
||||||
if (0 < \strlen($sLine))
|
if (0 < \strlen($sLine))
|
||||||
{
|
{
|
||||||
$sFirst = $sLine{1};
|
$sFirst = \substr($sLine,0,1);
|
||||||
if (' ' === $sFirst || "\t" === $sFirst)
|
if (' ' === $sFirst || "\t" === $sFirst)
|
||||||
{
|
{
|
||||||
if (!$bSkip)
|
if (!$bSkip)
|
||||||
|
|
Loading…
Add table
Reference in a new issue