From 8ec64a75d350bae4d66643b7da9c587448b838d6 Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Thu, 28 Mar 2024 13:14:51 +0700 Subject: [PATCH] Update viewtopic.php --- viewtopic.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/viewtopic.php b/viewtopic.php index 568312e0..fe8c8522 100644 --- a/viewtopic.php +++ b/viewtopic.php @@ -707,7 +707,14 @@ for($i = 0; $i < $total_posts; $i++) if ($poster_id != BOT_UID) { - $quote_btn = ($is_auth['auth_reply'] && !($t_data['forum_status'] == FORUM_LOCKED || $t_data['topic_status'] == TOPIC_LOCKED)); + if ($bb_cfg['fix_quote_button']) + { + $quote_btn = ($is_auth['auth_reply'] && !($t_data['forum_status'] == FORUM_LOCKED || $t_data['topic_status'] == TOPIC_LOCKED)); + } + else + { + $quote_btn = true; + } $edit_btn = (($userdata['user_id'] == $poster_id && $is_auth['auth_edit']) || $is_auth['auth_mod']); $ip_btn = ($is_auth['auth_mod'] || IS_MOD); }