Файл: public_html/element_forum_subforum_create.php
Строк: 20
<?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) {
require_once './element_forum/element_subforum_town_create_razdel.php';
} else {
require_once './element_forum/element_subforum_other_create_razdel.php';
}
require_once './element_include/element_foot_user_true.php';
?>