diff --git a/core/lib/Drupal/Core/Menu/menu.api.php b/core/lib/Drupal/Core/Menu/menu.api.php index dfe000971d2b44c3d664bbbb8383dd3472f46b9e..ce136e22364c6ca2096a4846bc3da174821664f2 100644 --- a/core/lib/Drupal/Core/Menu/menu.api.php +++ b/core/lib/Drupal/Core/Menu/menu.api.php @@ -485,7 +485,9 @@ function hook_system_breadcrumb_alter(\Drupal\Core\Breadcrumb\Breadcrumb &$bread */ function hook_link_alter(&$variables) { // Add a warning to the end of route links to the admin section. - if (isset($variables['route_name']) && strpos($variables['route_name'], 'admin') !== FALSE) { + /** @var \Drupal\Core\Url $url */ + $url = $variables['url']; + if ($url->isRouted() && strpos($url->getRouteName(), 'admin') !== FALSE) { $variables['text'] = t('@text (Warning!)', ['@text' => $variables['text']]); } }