X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/ec5417cab8b5b6227670a13d6a58e6e392fb7971..159ee0f3d812c9681a00c37f6a2bcaf8a1de83bc:/issue/index.php diff --git a/issue/index.php b/issue/index.php index bb556f2..82fa39e 100644 --- a/issue/index.php +++ b/issue/index.php @@ -37,12 +37,11 @@ if ($id and ctype_digit($id)) { } if ($_POST) { - $html = nl2br(htmlspecialchars($_POST['body'])); - $html = empty($html) ? NULL : "

$html

"; + require_once 'upload.inc.php'; $query = $Db->set('issues', [ 'page' => $Page, 'subject' => $_POST['subject'], - 'body' => $html, + 'body' => messagehtml($_POST['body']), 'author' => $User->login, ]); if (!$query->rowCount()) {