diff --git a/core/modules/comment/comment.module b/core/modules/comment/comment.module index f02d8b8..07b177e 100644 --- a/core/modules/comment/comment.module +++ b/core/modules/comment/comment.module @@ -171,7 +171,7 @@ function comment_menu_link_defaults() { $links['comment.admin'] = array( 'link_title' => 'Comments', 'route_name' => 'comment.admin', - 'parent' => \Drupal::moduleHandler()->moduleExists('node') ? 'node.admin.content' : 'system.admin', + 'parent' => \Drupal::moduleHandler()->moduleExists('node') ? 'node.content_overview' : 'system.admin', 'description' => 'List and edit site comments and the comment approval queue.', ); $links['comment.bundle_list'] = array( @@ -187,7 +187,7 @@ function comment_menu_link_defaults() { /** * Implements hook_menu_link_defaults_alter() */ -function comment_menu_links_defaults_alter(&$links) { +function comment_menu_link_defaults_alter(&$links) { if (isset($links['node.content_overview'])) { // Add comments to the description for admin/content if any. $links['node.content_overview']['description'] = 'Administer content and comments.'; diff --git a/core/modules/content_translation/content_translation.module b/core/modules/content_translation/content_translation.module index b6f8f5e..95cd875 100644 --- a/core/modules/content_translation/content_translation.module +++ b/core/modules/content_translation/content_translation.module @@ -233,8 +233,8 @@ function content_translation_menu_alter(array &$items) { */ function content_translation_menu_link_defaults_alter(array &$links) { // Clarify where translation settings are located. - $links['language.admin.language.content_settings_page']['link_title'] = 'Content language and translation'; - $links['language.admin.language.content_settings_page']['description'] = 'Configure language and translation support for content.'; + $links['language.content_settings_page']['link_title'] = 'Content language and translation'; + $links['language.content_settings_page']['description'] = 'Configure language and translation support for content.'; } /** diff --git a/core/modules/dblog/dblog.module b/core/modules/dblog/dblog.module index cc934f6..5052a8a 100644 --- a/core/modules/dblog/dblog.module +++ b/core/modules/dblog/dblog.module @@ -56,7 +56,7 @@ function dblog_menu_link_defaults() { 'link_title' => "Top 'access denied' errors", 'route_name' => 'dblog.access_denied', 'description' => "View 'access denied' errors (403s).", - 'parent' => 'system.admin.reports', + 'parent' => 'system.admin_reports', ); if (\Drupal::moduleHandler()->moduleExists('search')) {