diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc index a878571..1edc137 100644 --- a/core/includes/bootstrap.inc +++ b/core/includes/bootstrap.inc @@ -2094,12 +2094,12 @@ function drupal_anonymous_user() { * In order to bootstrap Drupal from another PHP script, you can use this code: * @code * define('DRUPAL_ROOT', '/path/to/drupal'); - * require_once DRUPAL_ROOT . '/includes/bootstrap.inc'; + * require_once DRUPAL_ROOT . '/core/includes/bootstrap.inc'; * drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); * @endcode * * @param $phase - * A constant telling which phase to boostrap to. When you bootstrap to a + * A constant telling which phase to bootstrap to. When you bootstrap to a * particular phase, all earlier phases are run automatically. Possible * values: * - DRUPAL_BOOTSTRAP_CONFIGURATION: Initializes configuration. @@ -2108,7 +2108,7 @@ function drupal_anonymous_user() { * - DRUPAL_BOOTSTRAP_VARIABLES: Initializes the variable system. * - DRUPAL_BOOTSTRAP_SESSION: Initializes session handling. * - DRUPAL_BOOTSTRAP_PAGE_HEADER: Sets up the page header. - * - DRUPAL_BOOTSTRAP_LANGUAGE: Finds out the language of the page. + * - DRUPAL_BOOTSTRAP_CODE: Loads code for subsystems and modules. * - DRUPAL_BOOTSTRAP_FULL: Fully loads Drupal. Validates and fixes input * data. * @param $new_phase