mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-14 18:48:21 -07:00
[Configurable] Show magnet-links for guests (#1712)
* [Configurable] Show magnet links for guests * Update mysql.sql * Update legacy-changes.txt * Updated * Update main.php * Update functions.php * Updated * Update viewforum.tpl * Update viewtopic_attach.tpl * Update viewforum.tpl * Update CHANGELOG.md
This commit is contained in:
parent
ea1e533a5a
commit
60899a0184
11 changed files with 18 additions and 5 deletions
|
@ -583,6 +583,7 @@ VALUES ('allow_autologin', '1'),
|
|||
('xs_use_cache', '1'),
|
||||
('cron_check_interval', '180'),
|
||||
('magnet_links_enabled', '1'),
|
||||
('magnet_links_for_guests', '0'),
|
||||
('gender', '1'),
|
||||
('callseed', '0'),
|
||||
('tor_stats', '1'),
|
||||
|
|
|
@ -148,3 +148,6 @@ UPDATE `bb_cron` SET `run_interval` = '00:10:00' WHERE `cron_script` = 'tr_seed_
|
|||
// 2.4.5-rc.1
|
||||
INSERT INTO `bb_extensions` (`group_id`, `extension`, `comment`) VALUES ('1', 'avif', ''), ('3', 'm3u', '');
|
||||
ALTER TABLE `bb_topics` ADD COLUMN `topic_allow_robots` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0';
|
||||
|
||||
// 2.4.5
|
||||
INSERT INTO bb_config VALUES ('magnet_links_for_guests', '0');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue