diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-05-26 09:12:29 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-05-26 09:12:29 +0000 |
commit | 3c4be3ab5581c0b53aeea20639f077e25324447f (patch) | |
tree | a9aa18888bffc256d8c9d93d39b0d1b53c5dce67 /includes | |
parent | 70546d29ff1a64633155e55d2973325164b01ba3 (diff) | |
download | brdo-3c4be3ab5581c0b53aeea20639f077e25324447f.tar.gz brdo-3c4be3ab5581c0b53aeea20639f077e25324447f.tar.bz2 |
- Patch #472658 by agentrickard: clean up of inline code comments.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/bootstrap.inc | 2 | ||||
-rw-r--r-- | includes/common.inc | 2 | ||||
-rw-r--r-- | includes/path.inc | 2 |
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()); } |