Update torrent_show_dl_list.php

This commit is contained in:
Roman Kelesidis 2024-01-28 00:38:28 +07:00
parent 5fc21abcf1
commit f25e5ee20b

View File

@ -88,6 +88,10 @@ if ($show_dl_list)
$dl_count_mode_cnt = 0; $dl_count_mode_cnt = 0;
foreach ($dl_status_css as $i => $desc) foreach ($dl_status_css as $i => $desc)
{ {
if ($i == DL_STATUS_RELEASER)
{
continue;
}
if ($dl_cat[$i] && !$count_mode) if ($dl_cat[$i] && !$count_mode)
{ {
$dl_users_div_style = ($dl_count[$i] > $max_dl_users_before_overflow) ? $dl_users_div_style_overflow : $dl_users_div_style_normal; $dl_users_div_style = ($dl_count[$i] > $max_dl_users_before_overflow) ? $dl_users_div_style_overflow : $dl_users_div_style_normal;