From ec0dde06755d1ac80943eb858e4cb40d5b332622 Mon Sep 17 00:00:00 2001 From: Bart van Bragt Date: Sat, 24 Feb 2001 10:01:48 +0000 Subject: Changed the order of some statements git-svn-id: file:///svn/phpbb/trunk@41 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/common.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'phpBB/common.php') diff --git a/phpBB/common.php b/phpBB/common.php index 3c33e94bf7..55e9e2da3d 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -39,18 +39,13 @@ include('functions/auth.'.$phpEx); include('functions/functions.'.$phpEx); include('db.'.$phpEx); -// Check if user is banned -if(!auth("ip ban", $db, "", "", "", "", "", USER_IP, "", "", "")) -{ - error_die($db, BANNED); -} - // Initalize these variables to keep them safe. $user_logged_in = 0; $logged_in = 0; $userdata = Array(); // Setup forum wide options. +// This is also the first DB query/connect $sql = "SELECT * FROM ".CONFIG_TABLE." WHERE selected = 1"; if(!$result = $db->sql_query($sql)) { @@ -74,6 +69,12 @@ else $sys_lang = $default_lang; } +// Check if user is banned +if(!auth("ip ban", $db, "", "", "", "", "", USER_IP, "", "", "")) +{ + error_die($db, BANNED); +} + if(isset($HTTP_COOKIE_VARS[$session_cookie])) { $sessid = $HTTP_COOKIE_VARS[$session_cookie]; -- cgit v1.2.1