Links to content that exists, but that is not in Drupal can be ignored by the module. An example is the content of the pop-up interface for the Image Assist module. This URL isn't actual Drupal content, but is still valid. The module needs to be able to deal with this properly.

Comments

Anonymous’s picture

There are two issues related to this:

1) The menu lookup did not correctly copy the lookup in menu_execute_active_handler() in menu.inc It should have included this snippet of code:

  while ($path && !isset($menu['callbacks'][$path])) {
    $path = substr($path, 0, strrpos($path, '/'));
  }

2) The code to remove the base path from the path will remove all slashes (/) from the path if the base path is '/'.

Anonymous’s picture

Status: Active » Fixed

Addressed in 5.x-1.1 release.

Anonymous’s picture

Status: Fixed » Closed (fixed)

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