mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 18:51:28 +00:00
bugzilla 56564, r=matt, sr=alecf, revert code from bugscape 2666 and use
string bundle for "third" search URL
This commit is contained in:
parent
dca0647bab
commit
669d675d27
@ -716,7 +716,8 @@ function OpenSearch(tabName, forceDialogFlag, searchStr)
|
||||
var searchEngineURI = null;
|
||||
var autoOpenSearchPanel = false;
|
||||
var defaultSearchURL = null;
|
||||
var fallbackDefaultSearchURL = bundle.GetStringFromName("fallbackDefaultSearchURL")
|
||||
var fallbackDefaultSearchURL = bundle.GetStringFromName("fallbackDefaultSearchURL");
|
||||
var otherSearchURL = bundle.GetStringFromName("otherSearchURL");
|
||||
|
||||
try
|
||||
{
|
||||
@ -743,15 +744,24 @@ function OpenSearch(tabName, forceDialogFlag, searchStr)
|
||||
// Call in to BrowserAppCore instead of replacing
|
||||
// the url in the content area so that B/F buttons work right
|
||||
|
||||
// There used to be an 'if' case to see if defaultSearchURL == fallbackDefaultSearchURL
|
||||
// and if so, call appCore.loadUrl("http://search.netscape.com/").
|
||||
// Removed 'if' case, set fallbackDefaultSearchURL to "http://search.netscape.com/" and
|
||||
// always use defaultSearchURL. I assert that this new way of handling things is
|
||||
// functionally equivalent to the old way.
|
||||
if (appCore)
|
||||
appCore.loadUrl(defaultSearchURL);
|
||||
else
|
||||
dump("BrowserAppCore is not initialised\n");
|
||||
if (!(defaultSearchULR == fallbackDefaultURL))
|
||||
{
|
||||
if (appCore)
|
||||
appCore.loadUrl(defaultSearchURL);
|
||||
else
|
||||
dump("BrowserAppCore is not initialised\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
//window._content.local.href = "http://home.netscape.com/bookmark/6_0/tsearch.html"
|
||||
// Call in to BrowserAppCore instead of replacing
|
||||
// the url in the content area so that B/F buttons work right
|
||||
if (appCore)
|
||||
appCore.loadUrl(otherSearchURL);
|
||||
else
|
||||
dump("BrowserAppCore is not initialised\n");
|
||||
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user