--- path_redirect.module.old 2007-06-27 09:14:49.000000000 +0530 +++ path_redirect.module.new 2007-06-27 09:14:48.000000000 +0530 @@ -28,6 +28,7 @@ function path_redirect_init() { $path = db_escape_string($_GET['q']); $r = db_fetch_object(db_query('SELECT redirect, query, fragment, type FROM {path_redirect} WHERE path = "%s"', $path)); if ($r) { + drupal_set_message(t('This page has been moved: Update your bookmarks')); drupal_goto($r->redirect, ($r->query ? $r->query: NULL), ($r->fragment ? $r->fragment : NULL), $r->type); } }