diff options
author | Nils Adermann <naderman@naderman.de> | 2014-06-10 18:40:07 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2014-06-10 18:40:07 +0200 |
commit | 9842137028f70a2b48ea4eaaddd710cbcf7dc8d5 (patch) | |
tree | b050cc5a6ca4a4b048e07d93271ca79924fc9664 /phpBB/phpbb/console/command/dev/migration_tips.php | |
parent | 0aa6381834724e9d56d15a11b608b3c0c45e4d37 (diff) | |
parent | 0134acd53fb93ef64b60504ac73e20dc27910578 (diff) | |
download | forums-9842137028f70a2b48ea4eaaddd710cbcf7dc8d5.tar forums-9842137028f70a2b48ea4eaaddd710cbcf7dc8d5.tar.gz forums-9842137028f70a2b48ea4eaaddd710cbcf7dc8d5.tar.bz2 forums-9842137028f70a2b48ea4eaaddd710cbcf7dc8d5.tar.xz forums-9842137028f70a2b48ea4eaaddd710cbcf7dc8d5.zip |
Merge remote-tracking branch 'github-nickvergessen/ticket/12508' into develop-ascraeus
* github-nickvergessen/ticket/12508:
[ticket/12508] Ignore extensions in migration_tips dev tool
[ticket/12508] Fix doc block
[ticket/12508] Add new line to separate the if and foreach better
[ticket/12508] Add a unit test for set_extensions()
[ticket/12508] Only take a list of names for set_extensions()
[ticket/12508] Fix class doc block
[ticket/12508] Move \phpbb\extension\finder to \phpbb\finder
[ticket/12508] Fix usages of the finder
[ticket/12508] Remove extension manager from finder
Diffstat (limited to 'phpBB/phpbb/console/command/dev/migration_tips.php')
-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; |