diff options
author | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-11-28 16:59:17 -0800 |
---|---|---|
committer | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-11-28 16:59:17 -0800 |
commit | bcacd22f28f47ca04bafd31afcf82667396e8ac1 (patch) | |
tree | 59475252b3d74f12b86b7e69d4ffcda6685a50d2 /install.php | |
parent | fd2936b84e8bff5a9e37678ab7d656b3cb97f2a9 (diff) | |
download | brdo-bcacd22f28f47ca04bafd31afcf82667396e8ac1.tar.gz brdo-bcacd22f28f47ca04bafd31afcf82667396e8ac1.tar.bz2 |
Issue #1606946 by Albert Volkman, udaksh, bunthorne: Fix up API docs for top-level PHP files
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/install.php b/install.php index 881ca5a82..467027259 100644 --- a/install.php +++ b/install.php @@ -6,12 +6,16 @@ */ /** - * Root directory of Drupal installation. + * Defines the root directory of the Drupal installation. */ define('DRUPAL_ROOT', getcwd()); /** - * Global flag to indicate that site is in installation mode. + * Global flag to indicate the site is in installation mode. + * + * The constant is defined using define() instead of const so that PHP + * versions prior to 5.3 can display proper PHP requirements instead of causing + * a fatal error. */ define('MAINTENANCE_MODE', 'install'); |