Update deprecated passing glue string after array in implode in Content\Text\HTML
This commit is contained in:
parent
f2e11ff213
commit
c632d4e7a2
1 changed files with 2 additions and 2 deletions
|
@ -510,7 +510,7 @@ class HTML
|
||||||
|
|
||||||
$newlines[] = $line;
|
$newlines[] = $line;
|
||||||
|
|
||||||
return implode($newlines, "\n");
|
return implode("\n", $newlines);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static function quoteLevel($message, $wraplength = 75)
|
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)
|
private static function collectURLs($message)
|
||||||
|
|
Loading…
Reference in a new issue