diff --git a/core/includes/menu.inc b/core/includes/menu.inc index a4eef9e..83c842c 100644 --- a/core/includes/menu.inc +++ b/core/includes/menu.inc @@ -1745,7 +1745,8 @@ function theme_menu_local_action($variables) { $output = '
  • '; // @todo Remove this check and the call to l() when all pages are converted to // routes. - if (!empty($link['href'])) { + // @todo Figure out how to support local actions without a href properly. + if ($link['href'] !== '') { $output .= l($link['title'], $link['href'], $link['localized_options']); } else {