Update deprecated passing glue string after array in implode in Content\Text\HTML

This commit is contained in:
Hypolite Petovan 2020-01-19 10:25:18 -05:00
vanhempi f2e11ff213
commit c632d4e7a2
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa

Näytä tiedosto

@ -510,7 +510,7 @@ class HTML
$newlines[] = $line;
return implode($newlines, "\n");
return implode("\n", $newlines);
}
private static function quoteLevel($message, $wraplength = 75)
@ -546,7 +546,7 @@ class HTML
}
}
return implode($newlines, "\n");
return implode("\n", $newlines);
}
private static function collectURLs($message)