Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

Expand Down
3 changes: 1 addition & 2 deletions lib/src/Util/BootTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}

Expand Down