nl2br so we get proper newlining when publishing \r, \n or \r\n
This commit is contained in:
parent
96b0cfe662
commit
c6bdafb3d0
@ -832,7 +832,7 @@ function common_find_mentions_raw($text)
|
|||||||
|
|
||||||
function common_render_text($text)
|
function common_render_text($text)
|
||||||
{
|
{
|
||||||
$r = htmlspecialchars($text);
|
$r = nl2br(htmlspecialchars($text));
|
||||||
|
|
||||||
$r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r);
|
$r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r);
|
||||||
$r = common_replace_urls_callback($r, 'common_linkify');
|
$r = common_replace_urls_callback($r, 'common_linkify');
|
||||||
|
Loading…
Reference in New Issue
Block a user