diff --git a/core/modules/menu_link/menu_link.module b/core/modules/menu_link/menu_link.module old mode 100644 new mode 100755 index 85d8e92..fa64d27 --- a/core/modules/menu_link/menu_link.module +++ b/core/modules/menu_link/menu_link.module @@ -12,7 +12,7 @@ function menu_link_help($path, $arg) { case 'admin/help#menu_link': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Menu Link module allows users to create menu links. It is required by the Menu module, which provides an interface for managing menus. See the Menu module help page for more information.', array('@menu-help' => url('admin/help/menu'))) . '

'; + $output .= '

' . t('The Menu Link module allows users to create menu links. It is required by the Menu module, which provides an interface for managing menus. See the Menu module help page for more information.', array('!menu-help' => \Drupal::url('help.page', array('name' => 'menu')))) . '

'; return $output; } }