mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
convert local html characters like Ü (#4069)
Foreign language html emails were sent as received. Now all html entities should be converted to there corresponding UTF8 characters.
This commit is contained in:
@@ -225,7 +225,7 @@ if (sizeof($result) != 0) {
|
||||
|
||||
if ($fax_message != '') {
|
||||
$fax_message = strip_tags($fax_message);
|
||||
$fax_message = str_replace(" ", "\r\n", $fax_message);
|
||||
$fax_message = html_entity_decode($fax_message);
|
||||
$fax_message = str_replace("\r\n\r\n", "\r\n", $fax_message);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user