summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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']);
}