diff --git a/system/pages/forum/new_thread.php b/system/pages/forum/new_thread.php
index cd42b6bd..75980a05 100644
--- a/system/pages/forum/new_thread.php
+++ b/system/pages/forum/new_thread.php
@@ -13,7 +13,7 @@ defined('MYAAC') or die('Direct access not allowed!');
if(Forum::canPost($account_logged))
{
$players_from_account = $db->query('SELECT `players`.`name`, `players`.`id` FROM `players` WHERE `players`.`account_id` = '.(int) $account_logged->getId())->fetchAll();
- $section_id = isset($_REQUEST['section_id']) ? $_REQUEST['section_id'] : null;
+ $section_id = $_REQUEST['section_id'] ?? null;
if($section_id !== null) {
echo 'Boards >> ' . $sections[$section_id]['name'] . ' >> Post new thread
';
if(isset($sections[$section_id]['name']) && Forum::hasAccess($section_id)) {