diff options
author | Nils Adermann <naderman@naderman.de> | 2013-04-25 04:01:38 -0700 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2013-04-25 04:01:38 -0700 |
commit | 7b144bbff2968b8897359b7954f048ce5eb78455 (patch) | |
tree | d22e4fb4b65d84f835ec8c5573145269b7187f7d /phpBB/install | |
parent | 6d0b183553a63156cbeb4f515bbc22c728c63008 (diff) | |
parent | 9c4553c41f0e0f2c28fb95b5e56886f77cb759ba (diff) | |
download | forums-7b144bbff2968b8897359b7954f048ce5eb78455.tar forums-7b144bbff2968b8897359b7954f048ce5eb78455.tar.gz forums-7b144bbff2968b8897359b7954f048ce5eb78455.tar.bz2 forums-7b144bbff2968b8897359b7954f048ce5eb78455.tar.xz forums-7b144bbff2968b8897359b7954f048ce5eb78455.zip |
Merge pull request #1369 from EXreaction/ticket/11335
Ticket/11335
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/database_update.php | 2 | ||||
-rw-r--r-- | phpBB/install/index.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 867235e607..5ea950bfad 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -95,7 +95,7 @@ require($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx); set_error_handler(defined('PHPBB_MSG_HANDLER') ? PHPBB_MSG_HANDLER : 'msg_handler'); // Setup class loader first -$phpbb_class_loader = new phpbb_class_loader('phpbb_', "{$phpbb_root_path}includes/", ".$phpEx"); +$phpbb_class_loader = new phpbb_class_loader('phpbb_', "{$phpbb_root_path}includes/", $phpEx); $phpbb_class_loader->register(); // Set up container (must be done here because extensions table may not exist) diff --git a/phpBB/install/index.php b/phpBB/install/index.php index a03fda6395..57bcdaffc1 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -90,9 +90,9 @@ include($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx); require($phpbb_root_path . 'includes/functions_install.' . $phpEx); // Setup class loader first -$phpbb_class_loader = new phpbb_class_loader('phpbb_', "{$phpbb_root_path}includes/", ".$phpEx"); +$phpbb_class_loader = new phpbb_class_loader('phpbb_', "{$phpbb_root_path}includes/", $phpEx); $phpbb_class_loader->register(); -$phpbb_class_loader_ext = new phpbb_class_loader('phpbb_ext_', "{$phpbb_root_path}ext/", ".$phpEx"); +$phpbb_class_loader_ext = new phpbb_class_loader('phpbb_ext_', "{$phpbb_root_path}ext/", $phpEx); $phpbb_class_loader_ext->register(); // Set up container |