Файл: DARK WARS/dark_war/forum/topic.php
Строк: 21
<?php
include_once '../start.php';
$doc = new document();
if (!isset($_GET['id']) || !is_numeric($_GET['id'])) {
$doc->err('Ошибка, не выбран форум');
exit();
}
$id = (int)$_GET['id'];
$cat = mysql_fetch_assoc(mysql_query("SELECT * FROM `dark_war_forum_topics` WHERE `id` = '$id' LIMIT 1"));
if (!$cat) {
$doc->err('Запрос к несуществующему форуму');
exit();
}
$doc->title('Форум - ' . $cat['name']);
$pages = new pages;
$pages->posts = mysql_result(mysql_query("SELECT COUNT(*) FROM `dark_war_forum_themes` WHERE `id_topic` = '$cat[id]'"), 0);
$pages->this_page(); // получаем текущую страницу
$q=mysql_query("SELECT * FROM `dark_war_forum_themes` WHERE `id_topic` = '$cat[id]' LIMIT {$pages->my_start()}, {$pages->items_per_page}");
while ($post = mysql_fetch_array($q)) {
$count = mysql_result(mysql_query("SELECT COUNT(*) FROM `dark_war_forum_messages` WHERE `id_theme` = '$post[id]'"), 0);
$list = $post['name'] . " ($count)";
if ($post['closed'] == 1) {
$img = '/dark_war/all_img/forum/forum.png';
} else {
$img = '/dark_war/all_img/forum/topic.png';
}
$link = "theme.php?id=" . $post['id'] . "";
$dispatch[] = array ('title' => $list, 'img' => $img, 'link' => $link, 'ico_size' => 32);
}
if (!$dispatch) {
$dispatch[] = array ('title' => 'Нет тем');
}
$doc->assign('post', $dispatch);
$doc->display('view_list_plus_img.tpl');
$pages->listing("?id=$id&"); // вывод страниц
$doc->act("theme_new.php?id=$id", 'Начать тему');
if ($player->admin > 1) {
$doc->act("category_edit.php?id=$id", 'Изменить');
$doc->act("category_delete.php?id=$id", 'Удалить');
}
$doc->ret("/dark_war/forum/", 'В форум');
$doc->ret("/dark_war/forum/category.php?id=$cat[id_forum]", 'К категориям');
?>