diff --git a/README.md b/README.md index 55ced51d..79080451 100644 --- a/README.md +++ b/README.md @@ -226,8 +226,8 @@ Bootstrap less representative of a typical HTTP page-view, and it is incompatible with commands like `core:install`. You might use it for headless testing or as fallback/work-around if any bugs are discovered in the standard protocol.) -> ___NOTE___: In absence of a configuration variable, the __Automatic__ mode will behave like `CIVICRM_SETTINGS="Auto"` (in v0.3.x). - This is tentatively planned to change in v0.4.x, where it will behave like `CIVICRM_BOOT="Auto://."` +> ___NOTE___: In absence of a configuration variable, the __Automatic__ mode specifically behaves like `CIVICRM_BOOT="Auto://."` (in v0.4.x +> and later). This is a change from v0.3.x, where the default behaved like `CIVICRM_SETTINGS="Auto"`. Additionally, some deployments handle multiple sites ("multisite"/"multidomain"). You should target a specific site using `--url` or `HTTP_HOST`. diff --git a/lib/src/Util/BootTrait.php b/lib/src/Util/BootTrait.php index 0814f1b7..4c69eeda 100644 --- a/lib/src/Util/BootTrait.php +++ b/lib/src/Util/BootTrait.php @@ -103,8 +103,7 @@ public function boot(InputInterface $input, OutputInterface $output) { $input->setOption('level', 'full'); } else { - $input->setOption('level', 'full'); - // TODO (when tests pass, for v0.4): $input->setOption('level', 'cms-full'); + $input->setOption('level', 'cms-full'); } }