aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2013-11-03 03:28:04 +0100
committerAndreas Fischer <bantu@phpbb.com>2013-11-03 03:28:04 +0100
commita1af10848de17da27a6397aafb51c09b3343173a (patch)
tree0656a5718b884a5c6af7abd0740210e1f31e6728 /phpBB
parent5db1ec163d32c75cd13cddc4902b3c01733294ba (diff)
downloadforums-a1af10848de17da27a6397aafb51c09b3343173a.tar
forums-a1af10848de17da27a6397aafb51c09b3343173a.tar.gz
forums-a1af10848de17da27a6397aafb51c09b3343173a.tar.bz2
forums-a1af10848de17da27a6397aafb51c09b3343173a.tar.xz
forums-a1af10848de17da27a6397aafb51c09b3343173a.zip
[ticket/11998] Also setup extension class loader.
PHPBB3-11998
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/console.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/console.php b/phpBB/console.php
index 94f6c551fa..50706d0b43 100644
--- a/phpBB/console.php
+++ b/phpBB/console.php
@@ -27,6 +27,8 @@ require($phpbb_root_path . 'phpbb/class_loader.' . $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_root_path}ext/", $phpEx);
+$phpbb_class_loader_ext->register();
$phpbb_container = phpbb_create_update_container($phpbb_root_path, $phpEx, "$phpbb_root_path/config");