From 39dec98f1680c109c045e8c91f787d093124b728 Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Tue, 20 Feb 2024 23:29:35 +0700 Subject: [PATCH] Update viewforum.php --- viewforum.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/viewforum.php b/viewforum.php index 497634e96..0841a8ccf 100644 --- a/viewforum.php +++ b/viewforum.php @@ -445,8 +445,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']) : '',