From 8d1d9cbb0133deccdf76ab9fcc74ec72d4a88743 Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Mon, 26 Aug 2024 15:37:31 +0700 Subject: [PATCH] Minor improvements (#1612) * Minor improvements * Update CHANGELOG.md * Update README.md * Update install.php * Update install.php --- CHANGELOG.md | 2 +- README.md | 4 ++-- install.php | 3 +++ library/config.php | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d97bda75..914e5eaa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ - Demo mode: Save user language in cookies [\#1584](https://github.com/torrentpier/torrentpier/pull/1584) ([belomaxorka](https://github.com/belomaxorka)) - Fixed `md5()` deprecated in PHP 8.4 [\#1561](https://github.com/torrentpier/torrentpier/pull/1561) ([belomaxorka](https://github.com/belomaxorka)) - Increased `USEREMAIL_MAX_LENGTH` [\#1566](https://github.com/torrentpier/torrentpier/pull/1566) ([belomaxorka](https://github.com/belomaxorka)) -- Minor improvements [\#1570](https://github.com/torrentpier/torrentpier/pull/1570), [\#1571](https://github.com/torrentpier/torrentpier/pull/1571), [\#1575](https://github.com/torrentpier/torrentpier/pull/1575), [\#1589](https://github.com/torrentpier/torrentpier/pull/1589), [\#1592](https://github.com/torrentpier/torrentpier/pull/1592), [\#1605](https://github.com/torrentpier/torrentpier/pull/1605), [\#1611](https://github.com/torrentpier/torrentpier/pull/1611) ([belomaxorka](https://github.com/belomaxorka)) +- Minor improvements [\#1570](https://github.com/torrentpier/torrentpier/pull/1570), [\#1571](https://github.com/torrentpier/torrentpier/pull/1571), [\#1575](https://github.com/torrentpier/torrentpier/pull/1575), [\#1589](https://github.com/torrentpier/torrentpier/pull/1589), [\#1592](https://github.com/torrentpier/torrentpier/pull/1592), [\#1605](https://github.com/torrentpier/torrentpier/pull/1605), [\#1611](https://github.com/torrentpier/torrentpier/pull/1611), [\#1612](https://github.com/torrentpier/torrentpier/pull/1612) ([belomaxorka](https://github.com/belomaxorka)) - Updated deps [\#1563](https://github.com/torrentpier/torrentpier/pull/1563), [\#1564](https://github.com/torrentpier/torrentpier/pull/1564), [\#1608](https://github.com/torrentpier/torrentpier/pull/1608), [\#1609](https://github.com/torrentpier/torrentpier/pull/1609), [\#1610](https://github.com/torrentpier/torrentpier/pull/1610) ([belomaxorka](https://github.com/belomaxorka)) - New Crowdin updates [\#1569](https://github.com/torrentpier/torrentpier/pull/1569), [\#1572](https://github.com/torrentpier/torrentpier/pull/1572), [\#1573](https://github.com/torrentpier/torrentpier/pull/1573), [\#1574](https://github.com/torrentpier/torrentpier/pull/1574), [\#1588](https://github.com/torrentpier/torrentpier/pull/1588), [\#1590](https://github.com/torrentpier/torrentpier/pull/1590), [\#1600](https://github.com/torrentpier/torrentpier/pull/1600), [\#1601](https://github.com/torrentpier/torrentpier/pull/1601), [\#1606](https://github.com/torrentpier/torrentpier/pull/1606), [\#1607](https://github.com/torrentpier/torrentpier/pull/1607) ([Exileum](https://github.com/Exileum)) diff --git a/README.md b/README.md index f9e6acb29..a0951b0c3 100644 --- a/README.md +++ b/README.md @@ -39,9 +39,9 @@ and go from there. The documentation will be translated into english in the near * Bonus points * Polls system * PM system -* Multilingual support +* Multilingual support (Fully supported for now only Russia and English languages) * Atom feeds -* and MUCH MORE! +* ... and MUCH MORE! ## 🖥️ Demo diff --git a/install.php b/install.php index 25c999ca5..36c1e5107 100644 --- a/install.php +++ b/install.php @@ -253,6 +253,9 @@ if (!is_file(BB_ROOT . 'vendor/autoload.php')) { out('- composer.phar not found', 'error'); exit; } +} else { + out('- Composer dependencies are present!', 'success'); + out("- Note: Remove 'vendor' folder if you want to re-install dependencies\n"); } // Preparing ENV diff --git a/library/config.php b/library/config.php index 3c08f828d..06f28411a 100644 --- a/library/config.php +++ b/library/config.php @@ -585,7 +585,7 @@ $bb_cfg['trash_forum_id'] = 0; // (int) 7 $bb_cfg['first_logon_redirect_url'] = 'index.php'; // Which page should the user be redirected to after registration is completed? $bb_cfg['terms_and_conditions_url'] = 'terms.php'; // Link to forum rules page -$bb_cfg['tor_help_links'] = '
Полезная информация
'; +$bb_cfg['tor_help_links'] = '
See $bb_cfg[\'tor_help_links\'] in config.php
'; $bb_cfg['user_agreement_url'] = 'info.php?show=user_agreement'; $bb_cfg['copyright_holders_url'] = 'info.php?show=copyright_holders';