Файл: user/discussions/inc/forum.php
Строк: 15
<?
/*
* Заголовок обсуждения
*/
if ($type == 'them' && $post['avtor'] != $user['id'])
{
$name = __('Новые комментарии в теме');
}
else if ($type == 'them' && $post['avtor'] == $user['id'])
{
$name = __('Новые комментарии в теме');
}
/*
* Выводим на экран
*/
if ($type == 'them')
{
$them = mysql_fetch_assoc(mysql_query("SELECT * FROM `forum_t` WHERE `id` = '".$post['id_sim']."' LIMIT 1"));
if ($them['id'])
{
?>
<div class="nav1">
<i class="fab fa-hotjar"></i> <?= $name?> <a href="/forum/<?= $them['id_forum']?>/<?= $them['id_razdel']?>/<?= $them['id']?>/?page=<?= $pageEnd?>"><b><?= text($them['name'])?></b></a>
<?
if ($post['count'] > 0)
{
?><b><font color='red'>+<?= $post['count']?></font></b><?
}
?>
<span class="time"><?= $s1 . vremja($post['time']) . $s2?></span>
</div>
<?
}
else
{
?>
<div class="mess">
<?= __('Тема форума уже удалена =(')?>
<span class="time"><?= $s1 . vremja($post['time']) . $s2?></span>
</div>
<?
}
}
?>