aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-03-31 02:54:39 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-03-31 18:14:11 +0200
commit9236dd4c471a6f7655bd00ae422a13013a400ac4 (patch)
tree5f08e769821991d6e557848dec1d630ef2892653 /phpBB/install
parent6deb7b3671c29ab7ce1db6e11b5c6be0950d265f (diff)
downloadforums-9236dd4c471a6f7655bd00ae422a13013a400ac4.tar
forums-9236dd4c471a6f7655bd00ae422a13013a400ac4.tar.gz
forums-9236dd4c471a6f7655bd00ae422a13013a400ac4.tar.bz2
forums-9236dd4c471a6f7655bd00ae422a13013a400ac4.tar.xz
forums-9236dd4c471a6f7655bd00ae422a13013a400ac4.zip
[feature/class-prefix] Rename auth => phpbb_auth
PHPBB3-10609
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/database_update.php1
-rw-r--r--phpBB/install/index.php3
2 files changed, 1 insertions, 3 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index fb5e79358d..96d984c04c 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -84,7 +84,6 @@ if (!empty($load_extensions) && function_exists('dl'))
// Include files
require($phpbb_root_path . 'includes/class_loader.' . $phpEx);
-require($phpbb_root_path . 'includes/auth.' . $phpEx);
require($phpbb_root_path . 'includes/functions.' . $phpEx);
diff --git a/phpBB/install/index.php b/phpBB/install/index.php
index d3cb68e82e..13ab30a9fa 100644
--- a/phpBB/install/index.php
+++ b/phpBB/install/index.php
@@ -75,7 +75,6 @@ require($phpbb_root_path . 'includes/functions.' . $phpEx);
phpbb_require_updated('includes/functions_content.' . $phpEx, true);
-include($phpbb_root_path . 'includes/auth.' . $phpEx);
include($phpbb_root_path . 'includes/functions_admin.' . $phpEx);
include($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx);
require($phpbb_root_path . 'includes/functions_install.' . $phpEx);
@@ -178,7 +177,7 @@ $sub = request_var('sub', '');
set_error_handler(defined('PHPBB_MSG_HANDLER') ? PHPBB_MSG_HANDLER : 'msg_handler');
$user = new phpbb_user();
-$auth = new auth();
+$auth = new phpbb_auth();
// Add own hook handler, if present. :o
if (file_exists($phpbb_root_path . 'includes/hooks/index.' . $phpEx))