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

Este commit está contenido en:
Hypolite Petovan 2020-01-19 10:25:18 -05:00
padre f2e11ff213
commit c632d4e7a2
Se han modificado 1 ficheros con 2 adiciones y 2 borrados

Ver fichero

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