This commit is contained in:
Roman Kelesidis 2024-12-18 00:02:23 +07:00
parent c0bca0f559
commit a859bb1054
2 changed files with 6 additions and 1 deletions

View File

@ -9,6 +9,7 @@
- Show torrent status changes in actions log
- Show torrent type (gold / silver) changes in actions log
- Show torrent unregister action in log actions
- Fixed callseed spam bug
- Fixed empty topic_id in log actions after topic rename
- Some other changes / improvements

View File

@ -14,7 +14,11 @@ $forum_id = $t_data['forum_id'];
set_die_append_msg($forum_id, $topic_id);
if ($t_data['seeders'] > 2)
if (!$bb_cfg['callseed'])
{
bb_die($lang['MODULE_OFF']);
}
elseif ($t_data['seeders'] > 2)
{
bb_die(sprintf($lang['CALLSEED_HAVE_SEED'], $t_data['seeders']));
}