Fix bug # 55277: searching with multiple engines. r= danm sr=ben

This commit is contained in:
rjc%netscape.com 2000-10-18 23:41:46 +00:00
parent 7806a764aa
commit dba8046559
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ function loadResultsTree( aSearchURL )
{
var resultsTree = document.getElementById( "internetresultstree" );
if (!resultsTree) return false;
resultsTree.setAttribute("ref", aSearchURL);
resultsTree.setAttribute("ref", unescape(aSearchURL));
return true;
}

View File

@ -793,7 +793,7 @@ function OpenSearch( aSearchStr, engineURIs )
searchURL += ( "&text=" + escapedSearchStr );
gURL = searchURL;
dump("*** about to attempt to load internetresults into the content window\n");
loadURLInContent("chrome://communicator/content/search/internetresults.xul?" + searchURL);
loadURLInContent("chrome://communicator/content/search/internetresults.xul?" + escape(searchURL));
}
}
catch(ex)