forked from extern/egroupware
fixed breaking of signatures when sending emails
This commit is contained in:
parent
2c66992d1d
commit
b1c111db85
@ -157,6 +157,11 @@
|
|||||||
|
|
||||||
$text = html_entity_decode($text, ENT_COMPAT, $this->displayCharset);
|
$text = html_entity_decode($text, ENT_COMPAT, $this->displayCharset);
|
||||||
|
|
||||||
|
$pos = strpos($text, 'blockquote');
|
||||||
|
|
||||||
|
if($pos === false) {
|
||||||
|
$asciiText = $text;
|
||||||
|
} else {
|
||||||
$indent = 0;
|
$indent = 0;
|
||||||
$indentString = '';
|
$indentString = '';
|
||||||
$asciiText = '';
|
$asciiText = '';
|
||||||
@ -184,6 +189,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return $asciiText;
|
return $asciiText;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user