Файл: public_html/clan_fight.php
Строк: 15
<?
include './system/common.php';
include './system/functions.php';
include './system/user.php';
// Запрещаем от гостей
if(!$user) { header('location: /'); exit; }
if(!$clan) { header('location: /'); exit; }
$title = 'Клановые поединки';
// подключаем верх//
include './system/h.php';
?>
<div class='block'>Выберите поединок для сражения:</div>
<a class='link' href='/'>Турнир клан против клана</a>
<a class='link' href='/clan_mob.php'>Проклятая пещера</a>
<?
include './system/f.php';
?>