From 2f6a71433d61d65a5231c7cd585c25d2838666c2 Mon Sep 17 00:00:00 2001
From: Angie Byron <webchick@24967.no-reply.drupal.org>
Date: Sat, 22 Nov 2008 16:48:20 +0000
Subject: [PATCH] #308834 follow-up by gpk: Comment improvements.

---
 includes/bootstrap.inc             | 10 +++++-----
 sites/default/default.settings.php |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 009ad4da51af..b2f4a27ed7f3 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');
 }
 
diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php
index 50b762f9ce12..e8043588040f 100644
--- a/sites/default/default.settings.php
+++ b/sites/default/default.settings.php
@@ -189,7 +189,7 @@
  * PHP settings:
  *
  * To see what PHP settings are possible, including whether they can be set at
- * runtime (i.e., when ini_set() occurs), read the PHP documentation:
+ * runtime (by using ini_set()), read the PHP documentation:
  * http://www.php.net/manual/en/ini.php#ini.list
  * See drupal_initialize_variables() in includes/bootstrap.inc for required
  * runtime settings and the .htaccess file for non-runtime settings. Settings
-- 
GitLab