v2.1.5-2023.10 [Final] (2023-11-04)
Merged pull requests:
- Release v2.1.5-2023.10 🎉
- Added ability to debug ajax_die() calls
- Added missing migration file (lts03-user_birthday.php)
- Check $tpl_vars['QUESTION'] in print_confirmation() 5bff794 (belomaxorka)
- Some fixes in admin_attach_cp.php
- Fixed undefined $lang['PREVIOUS'] c0769be (belomaxorka)
- Fixed broken letter marking in memberlist.php 6be1eb9 (belomaxorka)
- Fixed error while trying to delete posts by bot 8ee06f8, df5ed81 (belomaxorka)
- Added the ability to add additional announce URLs into torrent files
- Added check $bb_cfg['magnet_links_enabled'] in create_magnet()
- Added $lang['BT_UNREGISTERED_ALREADY'] lang key
- SQL: Increase speed_up & speed_down type limits
- Use strip_tags() for message in prompt_for_confirm()
- Use strip_tags() for error message in ajax_die()
- Use lang variable $lang['BT_REG_FAIL'] instead of text
- Fixed percentage calculation for SQL debug
- Minor improvements #297, #298, #300, #301, #302, #303, #305, #306, #307, #310, #312, #313, #315, #316, #317, #319, #321, #322, #323, #324 (belomaxorka)
For update to this version, you should perform the following database queries:
DELETE FROM `bb_extensions` WHERE `extension` = 'tif';
INSERT INTO `bb_extensions` VALUES ('997', '4', 'tif', '');
DELETE FROM `bb_extensions` WHERE `extension` = 'tga';
INSERT INTO `bb_extensions` VALUES ('998', '4', 'tga', '');
INSERT INTO `bb_extensions` VALUES ('999', '4', 'tiff', '');
ALTER TABLE `bb_bt_tracker` CHANGE `speed_up` `speed_up` int(11) unsigned NOT NULL DEFAULT '0';
ALTER TABLE `bb_bt_tracker` CHANGE `speed_down` `speed_down` int(11) unsigned NOT NULL DEFAULT '0';
ALTER TABLE `bb_bt_tracker_snap` CHANGE `speed_up` `speed_up` int(11) unsigned NOT NULL DEFAULT '0';
ALTER TABLE `bb_bt_tracker_snap` CHANGE `speed_down` `speed_down` int(11) unsigned NOT NULL DEFAULT '0';