From 0e42f8df0e9fd255155902cf8a97104df9da0711 Mon Sep 17 00:00:00 2001 From: flashwave Date: Tue, 1 Jan 2019 15:36:08 +0100 Subject: [PATCH] Fixed parser always being set to bbcode. --- public/forum/posting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/forum/posting.php b/public/forum/posting.php index 3d26b40f..74c0a88f 100644 --- a/public/forum/posting.php +++ b/public/forum/posting.php @@ -243,6 +243,6 @@ echo tpl_render('forum.posting', [ 'title' => $topicTitle ?? null, 'type' => $topicType ?? null, 'text' => $postText ?? null, - 'parser' => $postParser ?? MSZ_PARSER_BBCODE, + 'parser' => $postParser ?? null, ], ]);