This commit is contained in:
Roman Kelesidis 2024-02-26 13:01:37 +03:00
parent 491244dfd3
commit 56dada736d
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ if (!defined('IN_FORUM')) die(basename(__FILE__));
global $bb_cfg, $t_data, $poster_id, $is_auth, $dl_link_css, $dl_status_css, $lang, $images;
$show_completed_count = $bb_cfg['show_completed_count'];
$show_completed_count = ($bb_cfg['show_completed_count'] || $bb_cfg['ocelot']['enabled']);
$tor_status_by_for_all = true;
$change_peers_bgr_over = true;
$bgr_class_1 = 'row1';

View File

@ -27,7 +27,7 @@ $user->session_start(array('req_login' => $bb_cfg['bt_tor_browse_only_reg']));
set_die_append_msg();
$show_completed_count = $bb_cfg['show_completed_count'];
$show_completed_count = ($bb_cfg['show_completed_count'] || $bb_cfg['ocelot']['enabled']);
$tor_search_limit = (IS_AM) ? 2000 : 500;
$forum_select_size = 25; // forum select box max rows
$max_forum_name_len = 60; // inside forum select box

View File

@ -7,7 +7,7 @@ require(BB_ROOT . 'common.php');
$page_cfg['include_bbcode_js'] = true;
$show_completed_count = $bb_cfg['show_completed_count'];
$show_completed_count = ($bb_cfg['show_completed_count'] || $bb_cfg['ocelot']['enabled']);
$show_last_topic = true;
$last_topic_max_len = 40;
$title_match_key = 'nm';