diff options
author | Nils Adermann <naderman@naderman.de> | 2013-09-16 03:14:39 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2013-09-16 03:14:39 +0200 |
commit | 09cfa01d589ead86cf811e27b52167539e0478ec (patch) | |
tree | 8499d90aa8cd98f891fa9cc79a80c5a7a0a30018 /phpBB/install | |
parent | 2472271bc0cd7c15c77783c86ccaac643ab1756a (diff) | |
download | forums-09cfa01d589ead86cf811e27b52167539e0478ec.tar forums-09cfa01d589ead86cf811e27b52167539e0478ec.tar.gz forums-09cfa01d589ead86cf811e27b52167539e0478ec.tar.bz2 forums-09cfa01d589ead86cf811e27b52167539e0478ec.tar.xz forums-09cfa01d589ead86cf811e27b52167539e0478ec.zip |
[ticket/11700] Fix installation after develop merge
PHPBB3-11700
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php index e94c393922..ebfec4232f 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -108,11 +108,11 @@ phpbb_include_updated('includes/utf/utf_tools.' . $phpEx); phpbb_require_updated('includes/functions_install.' . $phpEx); // Setup class loader first -$phpbb_class_loader_new = new \phpbb\class_loader('phpbb_', "{$phpbb_root_path}install/update/new/phpbb/", $phpEx); +$phpbb_class_loader_new = new \phpbb\class_loader('phpbb\\', "{$phpbb_root_path}install/update/new/phpbb/", $phpEx); $phpbb_class_loader_new->register(); -$phpbb_class_loader = new \phpbb\class_loader('phpbb_', "{$phpbb_root_path}phpbb/", $phpEx); +$phpbb_class_loader = new \phpbb\class_loader('phpbb\\', "{$phpbb_root_path}phpbb/", $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 |