aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index 79d64b2403..2c1c7c8599 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -68,7 +68,7 @@ else
$default_lang = $config[0]["default_lang"];
$sys_lang = $default_lang;
}
-
+include('language/lang_'.$default_lang.'.'.$phpEx);
// Check if user is banned
if(!auth("ip ban", $db, "", USER_IP))
{
@@ -99,7 +99,7 @@ if (!$user_logged_in)
if(isset($HTTP_COOKIE_VARS[$cookie_name]))
{
$userdata = get_userdata_from_id($HTTP_COOKIE_VARS["$cookie_name"], $db);
- if(!auth("username ban", $db, $userdata["user_id"], "", "", "", "", "", "", "", ""))
+ if(!auth("username ban", $db, $userdata["user_id"]))
{
error_die($db, BANNED);
}