Bug 295035: "Find Module" produces the incorrect anchor tag for the redirect to owners.html

This commit is contained in:
justdave%bugzilla.org 2005-05-26 19:50:03 +00:00
Родитель 44a522e949
Коммит 548fd42b77
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -753,7 +753,7 @@ sub FindPartition {
# form on the owners page, so we should redirect the user to the anchor on that
# page for a single match.
if (scalar(@matches) == 1 && param("view")) {
print "Location: http://www.mozilla.org/owners.html#$matches[0]->{name}\n\n";
print "Location: http://www.mozilla.org/owners.html#" . name_to_id_token($matches[0]->{name}) . "\n\n";
exit;
}
PrintHeader();