mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-02-28 15:10:54 +03:00
Updated
This commit is contained in:
parent
c0bca0f559
commit
a859bb1054
@ -9,6 +9,7 @@
|
|||||||
- Show torrent status changes in actions log
|
- Show torrent status changes in actions log
|
||||||
- Show torrent type (gold / silver) changes in actions log
|
- Show torrent type (gold / silver) changes in actions log
|
||||||
- Show torrent unregister action in log actions
|
- Show torrent unregister action in log actions
|
||||||
|
- Fixed callseed spam bug
|
||||||
- Fixed empty topic_id in log actions after topic rename
|
- Fixed empty topic_id in log actions after topic rename
|
||||||
- Some other changes / improvements
|
- Some other changes / improvements
|
||||||
|
|
||||||
|
@ -14,7 +14,11 @@ $forum_id = $t_data['forum_id'];
|
|||||||
|
|
||||||
set_die_append_msg($forum_id, $topic_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']));
|
bb_die(sprintf($lang['CALLSEED_HAVE_SEED'], $t_data['seeders']));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user