Update torrent_show_dl_list.php

This commit is contained in:
Roman Kelesidis 2024-01-27 22:31:58 +07:00
parent e87ce2b018
commit 587799a438

View File

@ -92,7 +92,7 @@ if ($show_dl_list)
$template->assign_block_vars('dl_users.users_row', array(
'DL_OPTION_NAME' => $lang[strtoupper($desc)],
'DL_OPTION_USERS' => $dl_cat[$i],
'DL_COUNT' => declension((int)$dl_count[$i], 'times'),
'DL_COUNT' => $dl_count[$i],
'DL_USERS_DIV_STYLE' => $dl_users_div_style,
));
}
@ -104,7 +104,7 @@ if ($show_dl_list)
}
$template->assign_block_vars('dl_counts.count_row', array(
'DL_OPTION_NAME' => $lang[strtoupper($desc)],
'DL_OPTION_USERS' => declension((int)$dl_count[$i], 'times'),
'DL_OPTION_USERS' => $dl_count[$i],
));
}
}