Beispiel #1
0
<?php

if (!defined('init_pages')) {
    header('HTTP/1.0 404 not found');
    exit;
}
$CORE->loggedInOrReturn();
$quote = isset($_GET['quote']) ? (int) $_GET['quote'] : false;
if (!($topicId = WCF::getLastViewedTopic())) {
    WCF::SetupNotification('Please make sure you are in a valid topic before posting.');
    header("Location: " . $config['BaseURL'] . "/forums.php");
    die;
}
//Set the title
$TPL->SetTitle('Reply to Topic');
$TPL->SetParameter('topbar', true);
//Print the header
$TPL->LoadHeader();
if ($topic = WCF::getTopicInfo($topicId)) {
    if ($forum = WCF::getForumInfo($topic['forum'])) {
        if ($catName = WCF::getCategoryName($forum['category'])) {
            $forum['category_name'] = $catName;
        } else {
            $forum['category_name'] = 'Unknown';
        }
        unset($catName);
    }
}
?>

<!--<a href="#" class="important_notice"><p>Please read and accept the rules and regulations before communicating with other members!</p></a>-->