Hi,

Sorry for my english.

I have 2 aliases, for many nodes. But i see in google tools, he have both aliases, i try see and i realy can go to any alias. Maybe this only on this site, maybe conflict with other module. I don't know.

If in function globalredirect_init write drupal_lookup_path('wipe', NULL, NULL);, this make correct result, but this bad idea. For best need use

$alias = db_result(db_query("SELECT dst FROM {url_alias} WHERE src = '%s' AND language IN('%s', '') ORDER BY language DESC, pid DESC", $path, $path_language));

and check with $map[$path_language][$path]

then

if (isset($map[$path_language][$path]) && $map[$path_language][$path] != $alias) {
drupal_lookup_path('wipe', NULL, NULL);
}

But i don't know, maybe this code need add to path.inc and bug assign to core...

Tnx.