summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2016-01-30 16:18:29 -0500
committerDavid Rothstein <drothstein@gmail.com>2016-01-30 16:18:29 -0500
commitbdd6ba5a6a2f901a7903491cff66d2a1e43ec76e (patch)
tree800934244fc9111b1710705e10c9194341b5d580
parente5b9ebba1790e85a83053dc492e1be4225e4a916 (diff)
downloadbrdo-bdd6ba5a6a2f901a7903491cff66d2a1e43ec76e.tar.gz
brdo-bdd6ba5a6a2f901a7903491cff66d2a1e43ec76e.tar.bz2
Issue #2598062 by eiriksm: theme_links contains > 80 character inline comment lines
-rw-r--r--includes/theme.inc6
1 files changed, 4 insertions, 2 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 1accdceaf..ff54d6e2c 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -1809,7 +1809,8 @@ function theme_links($variables) {
foreach ($links as $key => $link) {
$class = array($key);
- // Add first, last and active classes to the list of links to help out themers.
+ // Add first, last and active classes to the list of links to help out
+ // themers.
if ($i == 1) {
$class[] = 'first';
}
@@ -1827,7 +1828,8 @@ function theme_links($variables) {
$output .= l($link['title'], $link['href'], $link);
}
elseif (!empty($link['title'])) {
- // Some links are actually not links, but we wrap these in <span> for adding title and class attributes.
+ // Some links are actually not links, but we wrap these in <span> for
+ // adding title and class attributes.
if (empty($link['html'])) {
$link['title'] = check_plain($link['title']);
}