diff --git a/template.php b/template.php index d0892958678ab8d439897b472aca2eeea842980c..9f7400850d4736eff0c04c810768373e0291545d 100644 --- a/template.php +++ b/template.php @@ -205,11 +205,11 @@ function _zurb_foundation_render_link($link) { // Render top level and make sure we have an actual link. if (!empty($link['#href'])) { - $output .= '' . l($link['#title'], $link['#href']); + $output .= '' . l($link['#title'], $link['#href'], $link['#localized_options']); // Add repeated link under the dropdown for small-screen. $small_link['#attributes']['class'][] = 'show-for-small'; - $sub_menu = '' . l($link['#title'], $link['#href']); + $sub_menu = '' . l($link['#title'], $link['#href'], $link['#localized_options']); // Build sub nav recursively. foreach ($link['#below'] as $sub_link) {