Minor improvements (#305)

* Minor improvements

* Update CHANGELOG.md
This commit is contained in:
Roman Kelesidis 2023-10-05 23:29:42 +07:00 committed by GitHub
parent 01e450ed87
commit 3b9a7e6665
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View File

@ -6,7 +6,7 @@
**Merged pull requests:** **Merged pull requests:**
- Release v2.1.5-2023.10 🎉 - Release v2.1.5-2023.10 🎉
- Minor improvements [\#297](https://github.com/torrentpier/torrentpier-lts/pull/297), [\#298](https://github.com/torrentpier/torrentpier-lts/pull/298), [\#300](https://github.com/torrentpier/torrentpier-lts/pull/300), [\#301](https://github.com/torrentpier/torrentpier-lts/pull/301), [\#302](https://github.com/torrentpier/torrentpier-lts/pull/302), [\#303](https://github.com/torrentpier/torrentpier-lts/pull/303), [\#304](https://github.com/torrentpier/torrentpier-lts/pull/304) ([belomaxorka](https://github.com/belomaxorka)) - Minor improvements [\#297](https://github.com/torrentpier/torrentpier-lts/pull/297), [\#298](https://github.com/torrentpier/torrentpier-lts/pull/298), [\#300](https://github.com/torrentpier/torrentpier-lts/pull/300), [\#301](https://github.com/torrentpier/torrentpier-lts/pull/301), [\#302](https://github.com/torrentpier/torrentpier-lts/pull/302), [\#303](https://github.com/torrentpier/torrentpier-lts/pull/303), [\#304](https://github.com/torrentpier/torrentpier-lts/pull/304), [\#305](https://github.com/torrentpier/torrentpier-lts/pull/305) ([belomaxorka](https://github.com/belomaxorka))
## [v2.1.5-2023.09](https://github.com/torrentpier/torrentpier-lts/tree/v2.1.5-2023.09) (2023-10-04) ## [v2.1.5-2023.09](https://github.com/torrentpier/torrentpier-lts/tree/v2.1.5-2023.09) (2023-10-04)
[Full Changelog](https://github.com/torrentpier/torrentpier-lts/compare/v2.1.5-2023.08-HotFix...v2.1.5-2023.09) [Full Changelog](https://github.com/torrentpier/torrentpier-lts/compare/v2.1.5-2023.08-HotFix...v2.1.5-2023.09)

View File

@ -15,7 +15,7 @@ if (isset($_REQUEST['submit']))
{ {
if (!$var =& $_REQUEST['f'] OR !$f_selected = get_id_ary($var)) if (!$var =& $_REQUEST['f'] OR !$f_selected = get_id_ary($var))
{ {
bb_die('Forum not selected'); bb_die($lang['SELECT_FORUM']);
} }
if (!$var =& $_REQUEST['prunedays'] OR !$prunedays = abs(intval($var))) if (!$var =& $_REQUEST['prunedays'] OR !$prunedays = abs(intval($var)))
{ {

View File

@ -49,7 +49,7 @@ if ($mode != '')
} }
else else
{ {
bb_die($lang['NO_WORD_SELECTED']); bb_die($lang['NO_WORD_SELECTED'] . '<br /><br />' . sprintf($lang['CLICK_RETURN_WORDADMIN'], '<a href="admin_words.php">', '</a>') . '<br /><br />' . sprintf($lang['CLICK_RETURN_ADMIN_INDEX'], '<a href="index.php?pane=right">', '</a>'));
} }
} }
@ -69,7 +69,7 @@ if ($mode != '')
if ($word == '' || $replacement == '') if ($word == '' || $replacement == '')
{ {
bb_die($lang['MUST_ENTER_WORD']); bb_die($lang['MUST_ENTER_WORD'] . '<br /><br />' . sprintf($lang['CLICK_RETURN_WORDADMIN'], '<a href="admin_words.php">', '</a>') . '<br /><br />' . sprintf($lang['CLICK_RETURN_ADMIN_INDEX'], '<a href="index.php?pane=right">', '</a>'));
} }
if ($word_id) if ($word_id)
@ -115,7 +115,7 @@ if ($mode != '')
} }
else else
{ {
bb_die($lang['NO_WORD_SELECTED']); bb_die($lang['NO_WORD_SELECTED'] . '<br /><br />' . sprintf($lang['CLICK_RETURN_WORDADMIN'], '<a href="admin_words.php">', '</a>') . '<br /><br />' . sprintf($lang['CLICK_RETURN_ADMIN_INDEX'], '<a href="index.php?pane=right">', '</a>'));
} }
} }
} }

View File

@ -140,7 +140,7 @@ elseif ($forum_id)
if (!$topic_row = DB()->fetch_row($sql)) if (!$topic_row = DB()->fetch_row($sql))
{ {
bb_die('Forum not exist'); bb_die($lang['FORUM_NOT_EXIST']);
} }
$forum_name = $topic_row['forum_name']; $forum_name = $topic_row['forum_name'];