aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMáté Bartus <mate.bartus@gmail.com>2015-12-14 22:16:32 +0100
committerMáté Bartus <mate.bartus@gmail.com>2015-12-14 22:16:32 +0100
commit60587d77bb3d7033a180b809594721be006a9ed8 (patch)
tree841c1ef27aa59d7ab15fe4ad1795a1e628d93b9f /phpBB
parent71738ff0995da44c27fbcde46cb08366aae4230f (diff)
parent54d3d4be308a61bc4986a16ceffd9164a84b3cf8 (diff)
downloadforums-60587d77bb3d7033a180b809594721be006a9ed8.tar
forums-60587d77bb3d7033a180b809594721be006a9ed8.tar.gz
forums-60587d77bb3d7033a180b809594721be006a9ed8.tar.bz2
forums-60587d77bb3d7033a180b809594721be006a9ed8.tar.xz
forums-60587d77bb3d7033a180b809594721be006a9ed8.zip
Merge pull request #4080 from Nicofuma/ticket/14358
[ticket/14358] Includes the composer autoloader in create_schema_files.php
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/develop/create_schema_files.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php
index f6bfd6a52f..09bc4c4085 100644
--- a/phpBB/develop/create_schema_files.php
+++ b/phpBB/develop/create_schema_files.php
@@ -38,6 +38,7 @@ define('IN_PHPBB', true);
$phpbb_root_path = dirname(__FILE__) . '/../';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
+include($phpbb_root_path . 'vendor/autoload.php');
include($phpbb_root_path . 'includes/constants.' . $phpEx);
require($phpbb_root_path . 'phpbb/class_loader.' . $phpEx);
$phpbb_class_loader = new \phpbb\class_loader('phpbb\\', "{$phpbb_root_path}phpbb/", $phpEx);