This commit is contained in:
Roman Kelesidis 2024-02-20 23:05:05 +07:00
parent 97b25c92fa
commit 59470b3be8
2 changed files with 3 additions and 3 deletions

View File

@ -489,7 +489,7 @@ td.topic_id { cursor: pointer; }
<td class="tCenter small nowrap" style="padding: 3px 4px 2px;">
<p>
<span title="{L_REPLIES}: {t.REPLIES}">{t.REPLIES}</span>
<span class="small"> | </span>
<!-- IF t.REPLIES and t.VIEWS --><span class="small"> | </span><!-- ENDIF -->
<span title="{L_VIEWS}: {t.VIEWS}">{t.VIEWS}</span>
</p>
<!-- BEGIN tor -->

View File

@ -494,8 +494,8 @@ foreach ($topic_rowset as $topic)
'IS_UNREAD' => $is_unread,
'TOPIC_ICON' => get_topic_icon($topic, $is_unread),
'PAGINATION' => ($moved) ? '' : build_topic_pagination(TOPIC_URL . $topic_id, $replies, $bb_cfg['posts_per_page']),
'REPLIES' => $replies,
'VIEWS' => $topic['topic_views'],
'REPLIES' => ($moved) ? '' : $replies,
'VIEWS' => ($moved) ? '' : $topic['topic_views'],
'TOR_STALED' => ($forum_data['allow_reg_tracker'] && !($t_type == POST_ANNOUNCE || $t_type == POST_STICKY || $topic['tor_size'])),
'TOR_FROZEN' => isset($topic['tor_status']) ? ((!IS_AM) ? isset($bb_cfg['tor_frozen'][$topic['tor_status']]) : '') : '',
'TOR_TYPE' => isset($topic['tor_type']) ? is_gold($topic['tor_type']) : '',