diff --git a/docs/framework/bootstrap.md b/docs/framework/bootstrap.md index 96f4996a3c614cad646d87f3794cbe1da981b48f..76e42dc32970dce597a7cb1e40a93b65ed3b67ab 100644 --- a/docs/framework/bootstrap.md +++ b/docs/framework/bootstrap.md @@ -8,7 +8,7 @@ Bootstrapping CiviCRM means loading the entire CiviCRM configuration files, load If you are writing a CiviCRM extension or for CiviCRM Core, this is handled automatically and you do not need to worry about bootstrapping CiviCRM. The only exception is the `extern` folder. -If you are writing code (for example a `Drupal module`, `Joomla Extension` or any other PHP script), you will need to bootstrap CiviCRM before accessing any of CiviCRM's functionality including CiviCRM's API. If you are an independent PHP script you should also ensure that the CMS is bootstrapped before bootstrapping CiviCRM. See the documentation of your CMS for details. +If you are writing code (for example a `Drupal module`, `Joomla Extension` or any other PHP script), you will need to bootstrap CiviCRM before accessing any of CiviCRM's functionality including CiviCRM's API. If you are developing an independent PHP script you should also ensure that the CMS is bootstrapped before bootstrapping CiviCRM. See the documentation of your CMS for details. ## Bootstrap Sequence (v4.7+)