X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/ebf3182ac0275887fc0609be098329dc30865ee2..0f7747af6751b55fb297a4e90f8c2ba6232bd0b9:/upload.inc.php diff --git a/upload.inc.php b/upload.inc.php index 4eff8a0..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 = preg_replace('"(?:
){2}"', "

\n\n

", nl2br($html)); + $html = preg_replace( + ["/\r?\n/", "'(?:
\n?){2}'"], + ["
\n", "

\n\n

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

$html

"; }