aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-03-28 22:12:09 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-03-29 11:01:05 +0100
commit81f724058366c96510ad802068becc3f18e701b1 (patch)
treed7033a6b0995e82a42bdeb6fe882a12a926bfcdf /phpBB/develop
parentb0aa366b12d7884f5ae4cc3684e943a8be44129a (diff)
downloadforums-81f724058366c96510ad802068becc3f18e701b1.tar
forums-81f724058366c96510ad802068becc3f18e701b1.tar.gz
forums-81f724058366c96510ad802068becc3f18e701b1.tar.bz2
forums-81f724058366c96510ad802068becc3f18e701b1.tar.xz
forums-81f724058366c96510ad802068becc3f18e701b1.zip
[ticket/11459] Do not take files of extensions into account
PHPBB3-11459
Diffstat (limited to 'phpBB/develop')
-rw-r--r--phpBB/develop/create_schema_files.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php
index 0cd562b264..db8c883393 100644
--- a/phpBB/develop/create_schema_files.php
+++ b/phpBB/develop/create_schema_files.php
@@ -26,7 +26,8 @@ include($phpbb_root_path . 'common.' . $phpEx);
$classes = $phpbb_container->get('ext.manager')
->get_finder()
- ->core_path('phpbb/db/migration/data/')
+ ->core_path('phpbb/')
+ ->directory('db/migration/data')
->get_classes();
$db_tools = new \phpbb\db\tools($db, true);