Skip to content

Commit

Permalink
Fixes #2787: Make sure all modules are loaded before executing site:s…
Browse files Browse the repository at this point in the history
…tatus. (#3219)
  • Loading branch information
Jelle-S authored and jmolivas committed Mar 15, 2017
1 parent fb8e159 commit 8bffedf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Command/Site/StatusCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ protected function configure()
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
// Make sure all modules are loaded.
$this->container->get('module_handler')->loadAll();

$io = new DrupalStyle($input, $output);

$systemData = $this->getSystemData();
Expand Down

0 comments on commit 8bffedf

Please sign in to comment.