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
parent f2e11ff213
commit c632d4e7a2
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni

Vedi File

@ -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)