diff --git a/core/includes/menu.inc b/core/includes/menu.inc
index 0fefe74a004f6be31f91652d71d72bb21b44c2af..27fb20cb15f0f3847d5dd0bdbef6aaa06fc8b9e3 100644
--- a/core/includes/menu.inc
+++ b/core/includes/menu.inc
@@ -464,13 +464,6 @@ function menu_navigation_links($menu_name, $level = 0) {
         $class = ' active-trail';
         $l['attributes']['class'][] = 'active-trail';
       }
-      // Normally, l() compares the href of every link with the current path and
-      // sets the active class accordingly. But local tasks do not appear in
-      // menu trees, so if the current path is a local task, and this link is
-      // its tab root, then we have to set the class manually.
-      if ($item['link']['href'] != current_path()) {
-        $l['attributes']['class'][] = 'active';
-      }
       // Keyed with the unique mlid to generate classes in links.html.twig.
       $links['menu-' . $item['link']['mlid'] . $class] = $l;
     }