The blue busy icon appears in the input field, and then the tab gets stuck (in Chrome), when trying to enter e.g. '/usa'.

Comments

donquixote’s picture

As a temporary solution, you could disable the menu_editor_path_autocomplete sub-module, which is not absolutely required for menu_editor to work.
(i will see why this is happening, hope i can tell more soon)

donquixote’s picture

Ok, this is the solution:

<?php
function menu_editor_path_autocomplete($string) {
?>

has to become

<?php
function menu_editor_path_autocomplete($string = NULL) {
?>

I will commit this soon.

donquixote’s picture

Should be fixed in 6.x-2.2

donquixote’s picture

Status: Active » Closed (fixed)