This commit is contained in:
Roman Kelesidis 2024-08-20 23:15:32 +07:00
parent 09ca2f3bb8
commit d273a2099f
3 changed files with 15 additions and 4 deletions

View File

@ -1,5 +1,16 @@
# 📖 Change Log
## [v2.1.5-2024.09 [Final v7]](https://github.com/torrentpier/torrentpier-lts/tree/v2.1.5-2024.09) (2024-09-04)
[Full Changelog](https://github.com/torrentpier/torrentpier-lts/compare/v2.1.5-2024.07-HotFix...v2.1.5-2024.09)
- Fixed undefined $lang in functions_delete.php
- Fixed incorrect SQL-query in topic_watch.php
- Some fixes for is_unread() working
- Increased USEREMAIL_MAX_LENGTH
- Some other changes / improvements
- Updated Download Center link
- Updated translations
## [v2.1.5-2024.07-HotFix [Final v6]](https://github.com/torrentpier/torrentpier-lts/tree/v2.1.5-2024.07-HotFix) (2024-07-13)
[Full Changelog](https://github.com/torrentpier/torrentpier-lts/compare/v2.1.5-2024.07...v2.1.5-2024.07-HotFix)

View File

@ -9,7 +9,7 @@
*/
function delete_attachment($post_id_array = 0, $attach_id_array = 0, $page = 0, $user_id = 0)
{
global $bb_cfg;
global $bb_cfg, $lang;
// Generate Array, if it's not an array
if ($post_id_array === 0 && $attach_id_array === 0 && $page === 0)

View File

@ -15,8 +15,8 @@ $domain_name = (!empty($_SERVER['SERVER_NAME'])) ? idn_to_utf8($_SERVER['SERVER_
$domain_ssl = false; // используется ли SSL сертификат (HTTPS) на сайте
// Version info
$bb_cfg['tp_version'] = '2.1.5-2024.07-HotFix [Final v6]';
$bb_cfg['tp_release_date'] = '13-07-2024';
$bb_cfg['tp_version'] = '2.1.5-2024.09 [Final v7]';
$bb_cfg['tp_release_date'] = '04-09-2024';
$bb_cfg['tp_release_state'] = 'LTS';
$bb_cfg['tp_zf_version'] = '2.4.13 (Latest)';