summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/bootstrap.inc2
-rw-r--r--includes/common.inc2
-rw-r--r--includes/path.inc2
3 files changed, 3 insertions, 3 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index aa658cfbc..90c2da466 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -1182,7 +1182,7 @@ function drupal_set_message($message = NULL, $type = 'status', $repeat = TRUE) {
}
}
- // messages not set when DB connection fails
+ // Messages not set when DB connection fails.
return isset($_SESSION['messages']) ? $_SESSION['messages'] : NULL;
}
diff --git a/includes/common.inc b/includes/common.inc
index 72b468560..099eaffb4 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -1496,7 +1496,7 @@ function _filter_xss_attributes($attr) {
}
}
- // the attribute list ends with a valueless attribute like "selected"
+ // The attribute list ends with a valueless attribute like "selected".
if ($mode == 1) {
$attrarr[] = $attrname;
}
diff --git a/includes/path.inc b/includes/path.inc
index a6abc19b9..6ea9db901 100644
--- a/includes/path.inc
+++ b/includes/path.inc
@@ -255,7 +255,7 @@ function arg($index = NULL, $path = NULL) {
function drupal_get_title() {
$title = drupal_set_title();
- // during a bootstrap, menu.inc is not included and thus we cannot provide a title
+ // During a bootstrap, menu.inc is not included and thus we cannot provide a title.
if (!isset($title) && function_exists('menu_get_active_title')) {
$title = check_plain(menu_get_active_title());
}