In admin_menu.inc file in admin_menu_flush_cache and admin_menu_toggle_modules function at the end they should be replaced drupal_goto by ResponseRedirect

-drupal_goto();
+$destination = drupal_get_destination();
+$url = url($destination['destination'], array('absolute' => TRUE));
+return new Symfony\Component\HttpFoundation\RedirectResponse($url);

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

dmouse’s picture

jibran’s picture

Issue summary: View changes

I have created a fork of admin_menu 8.x-3.x on github. Please help me fix it for Drupal 8
PRs are welcome. https://github.com/jibran/admin_menu

thalles’s picture

Category: Bug report » Support request

This module has been deprecated for Drupal 8.
For Drupal 8: the Admin Toolbar provides an experience similar to admin_menu with the core toolbar.

thalles’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.