diff --git a/asymmetric_menu_trees.module b/asymmetric_menu_trees.module index 4ff0ad6..6ba1c0e 100644 --- a/asymmetric_menu_trees.module +++ b/asymmetric_menu_trees.module @@ -92,7 +92,9 @@ function asymmetric_menu_trees_menu_form_menu_tree_manipulators_alter(&$manipula */ function asymmetric_menu_trees_superfish_manipulators_alter(array &$manipulators, $context) { $manipulators[] = ['callable' => 'asymmetric_menu_trees.menu_tree_manipulators:removeDisabledLinks']; - array_unshift($manipulators, $manipulators[1]); + array_unshift($manipulators, [ + 'callable' => 'asymmetric_menu_trees.menu_tree_manipulators:restructureTree', + ]); } /**