'Information', 'message' => 'The topic you tried to access does not exist.' ]; // Print template print Templates::render('errors/information.tpl', $renderData); exit; } // Set additional render data $renderData = array_merge($renderData, $topic, [ 'viewforum' => false, 'viewtopic' => true, 'page' => [ 'title' => $topic['topic']['topic_title'] ] ]); // Print page contents print Templates::render('forum/viewtopic.tpl', $renderData);