mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-13 17:38:19 +01:00
trying to improve linebreak behavior while importing mails.
This commit is contained in:
parent
d90ce31491
commit
a4d50d7f30
@ -1384,7 +1384,9 @@ class uiinfolog
|
|||||||
reset($newBody);
|
reset($newBody);
|
||||||
while(list($key,$value) = @each($newBody))
|
while(list($key,$value) = @each($newBody))
|
||||||
{
|
{
|
||||||
$value .= "\n";
|
if (trim($value) != '') {
|
||||||
|
if ($value != "\r") $value .= "\n";
|
||||||
|
}
|
||||||
$bodyAppend = $bofelamimail->wordwrap($value,75,"\n");
|
$bodyAppend = $bofelamimail->wordwrap($value,75,"\n");
|
||||||
$message .= $bodyAppend;
|
$message .= $bodyAppend;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user