Файл: public_html/element_forum_create_topic.php
Строк: 31
<?php
require_once './element_options/element_options.php';
if (!$user) { header('Location: /'); exit; }
    $title = 'Форум';
    if (readcache('element_user_mesto'.$user['lost_id']) != $title) writecache('element_user_mesto'.$user['lost_id'], $title);
    if (!$id) {
        $title = 'Раздел не существует';
        $error1 = 'Выбранный Вами раздел не существует, или был удален<br/><br/><a class="button w50 white" href="/forum">К списку разделов</a>';
        require_once 'element_error_page.php';
        exit;
    }
    $subforum = mysql_fetch_array(mysql_query("SELECT * FROM `element_forum_list_2` WHERE `lost_id` = '$id' LIMIT 1"));
        
    if (!$subforum) {
        $title = 'Раздел не существует';
        $error1 = 'Выбранный Вами раздел не существует, или был удален<br/><br/><a class="button w50 white" href="/forum">К списку разделов</a>';
        require_once 'element_error_page.php';
        exit;
    }
    //$subforum['lost_moderation'] = '1 2 3';
    $moderation = explode(" ", $subforum['lost_moderation']);
    
    // Если раздел городской, подключаем городской, иначе общий
    if ($subforum['lost_town'] > 0) {
        require_once './element_forum/element_subforum_town_create.php';
    } else {
        require_once './element_forum/element_subforum_other_create.php';
    }
    require_once './element_include/element_foot_user_true.php';
?>