Bug 264607 Form control with name="action" confuses "Add a keyword to this search"

patch by bugzilla@philringnalda.com r=vlad a=asa
This commit is contained in:
timeless%mozdev.org 2005-06-16 03:58:39 +00:00
Родитель 509fcd98a2
Коммит 02d3dbfd60
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -5590,7 +5590,7 @@ function AddKeywordForSearchField()
.getService(Components.interfaces.nsIIOService);
var uri = ioService.newURI(node.ownerDocument.URL, node.ownerDocument.characterSet, null);
var keywordURL = ioService.newURI(node.form.action, node.ownerDocument.characterSet, uri);
var keywordURL = ioService.newURI(node.form.getAttribute("action"), node.ownerDocument.characterSet, uri);
var spec = keywordURL.spec;
var postData = "";
var i, e;