When a new search is saved and the list of saved searches is refreshed, the path to the view is missing in the links to the saved searches if the view is saved in code instead of in the database. (see the url in the status bar of the screenshot. After the domain, it goes directly into the querystring, skipping the path of the view. When the full page is reloaded, the paths are correct. This is because the view is being loaded by the vid property in views_savedsearches_ahah():

$view = views_get_view($vid);

The vid property doesn't exist if the view is not in the database. This patch adds the view name and current_display to the savedsearches variables so the view can be loaded by name and display instead.

Support from Acquia helps fund testing for Drupal Acquia logo