X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/ae288f251dc7521badc3647cb5c3c8d9639b7fee..85bd24522825b832a8f30c5629b81cf90307a388:/upload.inc.php diff --git a/upload.inc.php b/upload.inc.php index e70f573..10881a2 100644 --- a/upload.inc.php +++ b/upload.inc.php @@ -52,8 +52,8 @@ function messagehtml($input) return $input; # allow html input as is if privileged } $html = preg_replace( - ["/\r?\n/", "'(?:
\n?){2}'"], - ["
\n", "

\n\n

"], + ["/\r\n?/", "/ +\n/", "/\n/", '/\b_(\w+)_\b/'], + ["\n", "
", "

\n

", '$1' ], htmlspecialchars($input) ); return "

$html

";