Fixed parser always being set to bbcode.

This commit is contained in:
flash 2019-01-01 15:36:08 +01:00
parent f6f5692166
commit 0e42f8df0e

View file

@ -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,
],
]);