From 81f724058366c96510ad802068becc3f18e701b1 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 28 Mar 2014 22:12:09 +0100 Subject: [PATCH] [ticket/11459] Do not take files of extensions into account PHPBB3-11459 --- phpBB/develop/create_schema_files.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);