diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-06-10 11:50:11 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-06-10 11:50:11 +0200 |
commit | 0134acd53fb93ef64b60504ac73e20dc27910578 (patch) | |
tree | b050cc5a6ca4a4b048e07d93271ca79924fc9664 /phpBB/phpbb/console | |
parent | c82ae94f8ac4b40368670ddb0d9540a036e7a5d7 (diff) | |
download | forums-0134acd53fb93ef64b60504ac73e20dc27910578.tar forums-0134acd53fb93ef64b60504ac73e20dc27910578.tar.gz forums-0134acd53fb93ef64b60504ac73e20dc27910578.tar.bz2 forums-0134acd53fb93ef64b60504ac73e20dc27910578.tar.xz forums-0134acd53fb93ef64b60504ac73e20dc27910578.zip |
[ticket/12508] Ignore extensions in migration_tips dev tool
PHPBB3-12508
Diffstat (limited to 'phpBB/phpbb/console')
-rw-r--r-- | phpBB/phpbb/console/command/dev/migration_tips.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/phpbb/console/command/dev/migration_tips.php b/phpBB/phpbb/console/command/dev/migration_tips.php index 62a0a68865..c2f61568ea 100644 --- a/phpBB/phpbb/console/command/dev/migration_tips.php +++ b/phpBB/phpbb/console/command/dev/migration_tips.php @@ -37,6 +37,7 @@ class migration_tips extends \phpbb\console\command\command protected function execute(InputInterface $input, OutputInterface $output) { $migrations = $this->extension_manager->get_finder() + ->set_extensions(array()) ->core_path('phpbb/db/migration/data/') ->get_classes(); $tips = $migrations; |