diff options
author | Niklas Fiekas <niklas.fiekas@googlemail.com> | 2012-05-10 23:00:55 +0200 |
---|---|---|
committer | Larry Garfield <larry@garfieldtech.com> | 2012-05-11 20:54:55 -0500 |
commit | 171fdb4410a0e5977fd05e9d8e178d6c1186ed56 (patch) | |
tree | 576b99acf26a7a3eb6e394e3e067293d379e9af5 /index.php | |
parent | 270dcd2e8826a06834a1f7c0e9680789213d8fe3 (diff) | |
download | drupal-171fdb4410a0e5977fd05e9d8e178d6c1186ed56.tar.gz drupal-171fdb4410a0e5977fd05e9d8e178d6c1186ed56.zip |
Detailed cleanup of documentation blocks for spacing, language, placement, etc.
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/index.php b/index.php index 244d4ae5ab4..8e2c882d791 100644 --- a/index.php +++ b/index.php @@ -24,12 +24,12 @@ define('DRUPAL_ROOT', getcwd()); require_once DRUPAL_ROOT . '/core/includes/bootstrap.inc'; drupal_bootstrap(DRUPAL_BOOTSTRAP_CONFIGURATION); -// A request object from the HTTPFoundation to tell us about the request. +// Create a request object from the HTTPFoundation. $request = Request::createFromGlobals(); -// Set the global $request object. This is a temporary measure to -// keep legacy utility functions working. It should be moved to a dependency -// injection container at some point. +// Set the global $request object. This is a temporary measure to keep legacy +// utility functions working. It should be moved to a dependency injection +// container at some point. request($request); drupal_bootstrap(DRUPAL_BOOTSTRAP_CODE); |