Файл: modules/guild/chat/index.php
Строк: 29
<?php
include_once '../../../core/system.php';
echo only_reg();
$header = '<img src="/images/guild/'.$user['rasa'].'.png" height="12" alt="*"> Зал совета';
$header_link = '/guild';
require_once H.'/core/head.php';
setcookie('errors', '<b>Не так быстро!<b>', time() + 3, '/');
echo'<script type="text/javascript" src="mess.js"></script>';
    if($user[level]<$settings[chat]){
    echo'<font color="red"><strong>Писать в чате доступно с '.$settings[chat].' уровня</strong></font>';
    }
    else
    {
        echo'<textarea id="mess" name="content" autofocus="autofocus"></textarea>
        <br />
        <span class="btn"><span class="end"><input class="label" id="add_mess" name="add_mess" type="submit" value="Отправить"></span></span>';
    }
    
    echo'
    <br />
    <br />
    
    <div id="content" class="content_chat"></div>
    ';
include H.'/core/foot.php';
?>