X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/159ee0f3d812c9681a00c37f6a2bcaf8a1de83bc..1bbddc858b16f392d9ca3475e9f162f914c56c9d:/upload.inc.php diff --git a/upload.inc.php b/upload.inc.php index ed9ee77..afaa047 100644 --- a/upload.inc.php +++ b/upload.inc.php @@ -44,7 +44,10 @@ function messagehtml($input) if (empty($input)) { return; } - $html = htmlspecialchars($input); - $html = nl2br($html); + $html = preg_replace( + ["/\r?\n/", "'(?:
\n?){2}'"], + ["
\n", "

\n\n

"], + htmlspecialchars($input) + ); return "

$html

"; }