summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-11-22 16:48:20 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-11-22 16:48:20 +0000
commit2f6a71433d61d65a5231c7cd585c25d2838666c2 (patch)
treec0012b2dd0d49882752b1774d6f344a0067fe530 /includes
parent3a5f422cc50ca418fdbf7cedfb044bf4d048cb12 (diff)
downloadbrdo-2f6a71433d61d65a5231c7cd585c25d2838666c2.tar.gz
brdo-2f6a71433d61d65a5231c7cd585c25d2838666c2.tar.bz2
#308834 follow-up by gpk: Comment improvements.
Diffstat (limited to 'includes')
-rw-r--r--includes/bootstrap.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 009ad4da5..b2f4a27ed 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -395,13 +395,13 @@ function drupal_initialize_variables() {
// Enforce E_ALL, but allow users to set levels not part of E_ALL.
error_reporting(E_ALL | error_reporting());
- // Override PHP settings required for Drupal to work properly. The .htaccess
- // file contains settings that cannot be changed at runtime. See
- // sites/default/default.settings.php for more non-runtime settings.
+ // Override PHP settings required for Drupal to work properly.
+ // sites/default/default.settings.php contains more runtime settings.
+ // The .htaccess file contains settings that cannot be changed at runtime.
- // Prevent PHP from generating HTML errors messages.
+ // Prevent PHP from generating HTML error messages.
ini_set('html_errors', 0);
- // Don't escape quotes when reading files from disk etc.
+ // Don't escape quotes when reading files from the database, disk, etc.
ini_set('magic_quotes_runtime', '0');
}