diff options
Diffstat (limited to 'includes/menu.inc')
-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"; |