$topicId ?? 0, 'post' => $postId ?? 0, 'post_fragment' => 'p' . ($postId ?? 0), ]); header("Location: {$redirect}"); return; } } } } if (!empty($topic)) { tpl_var('posting_topic', $topic); } if ($mode === 'edit') { // $post is pretty much sure to be populated at this point tpl_var('posting_post', $post); } $displayInfo = forum_posting_info(user_session_current('user_id')); echo tpl_render('forum.posting', [ 'posting_breadcrumbs' => forum_get_breadcrumbs($forumId), 'global_accent_colour' => forum_get_colour($forumId), 'posting_forum' => $forum, 'posting_info' => $displayInfo, 'posting_notices' => $notices, 'posting_mode' => $mode, 'posting_types' => $topicTypes, 'posting_defaults' => [ 'title' => $topicTitle ?? null, 'type' => $topicType ?? null, 'text' => $postText ?? null, 'parser' => $postParser ?? null, 'signature' => $postSignature ?? null, ], ]);