Bug 263216 links opened into new tab from ChatZilla pass the URL of the current tab as the http Referer

p=gavin.sharp@gmail.com r=silver
This commit is contained in:
bugzilla%arlen.demon.co.uk 2005-03-25 23:25:24 +00:00
Родитель 1a8956919c
Коммит 3aab5a5207
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1947,7 +1947,7 @@ function cmdGotoURL(e)
if (client.host == "Mozilla") {
window.openNewTabWith(e.url, false, false);
} else {
window.openNewTabWith(e.url);
window.openNewTabWith(e.url, null, null, null, null, false);
}
return;
}