diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-05-04 20:29:57 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-05-04 20:29:57 +0000 |
commit | 60515aa7f44ebcadae61330bca7b21a855b1dd51 (patch) | |
tree | 8ad71a7459b7556a186b1819c45d81c5aa729188 /includes | |
parent | 6ce1ae7464eb490e6836b192a121758f0b340503 (diff) | |
download | brdo-60515aa7f44ebcadae61330bca7b21a855b1dd51.tar.gz brdo-60515aa7f44ebcadae61330bca7b21a855b1dd51.tar.bz2 |
- Patch #745542 by seutje, sign: wrong margin for primary active tab in Seven.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/menu.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/menu.inc b/includes/menu.inc index f2e33002b..a31d91361 100644 --- a/includes/menu.inc +++ b/includes/menu.inc @@ -1438,7 +1438,7 @@ function theme_menu_local_task($variables) { $link['title'] = check_plain($link['title']); } $link['localized_options']['html'] = TRUE; - $link_text = t('!local-task-title !active', array('!local-task-title' => $link['title'], '!active' => $active)); + $link_text = t('!local-task-title!active', array('!local-task-title' => $link['title'], '!active' => $active)); } return '<li' . (!empty($variables['element']['#active']) ? ' class="active"' : '') . '>' . l($link_text, $link['href'], $link['localized_options']) . "</li>\n"; |