Using a value to filter aliases at /admin/config/search/path returns a 404

Adding this to fast_404_validate_path_sql() fixes the issue for me:

    if (count($path_parts) > 4 && $path_parts[1] == 'config' && $path_parts[2] == 'search') {
      return TRUE;
    }

Comments

macdev_drupal created an issue. See original summary.

ikeigenwijs’s picture

Status: Active » Needs review