diff --git a/allmakefiles.sh b/allmakefiles.sh
index 4a3eb740ee7..b334b7eef10 100755
--- a/allmakefiles.sh
+++ b/allmakefiles.sh
@@ -916,6 +916,7 @@ browser/components/migration/Makefile
browser/components/migration/public/Makefile
browser/components/migration/src/Makefile
browser/components/preferences/Makefile
+browser/components/search/Makefile
browser/components/sidebar/Makefile
browser/components/sidebar/src/Makefile
browser/components/shell/Makefile
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
index 2860e8305ca..df0aded107e 100644
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -205,8 +205,10 @@ pref("browser.download.manager.flashCount", 2);
// pointer to the default engine name
pref("browser.search.defaultenginename", "chrome://browser-region/locale/region.properties");
-// pointer to the Web Search url (content area context menu)
-pref("browser.search.defaulturl", "chrome://browser-region/locale/region.properties");
+
+// disable logging for the search service by default
+pref("browser.search.log", false);
+
// Ordering of Search Engines in the Engine list.
pref("browser.search.order.1", "chrome://browser-region/locale/region.properties");
pref("browser.search.order.2", "chrome://browser-region/locale/region.properties");
@@ -217,10 +219,6 @@ pref("browser.search.order.Yahoo.1", "chrome://branding/content/searchc
pref("browser.search.order.Yahoo.2", "chrome://branding/content/searchconfig.properties");
pref("browser.search.order.Yahoo", "chrome://branding/content/searchconfig.properties");
-// basic search popup constraint: minimum sherlock plugin version displayed
-// (note: must be a string representation of a float or it'll default to 0.0)
-pref("browser.search.basic.min_ver", "0.0");
-
// search bar results always open in a new tab
pref("browser.search.openintab", false);
diff --git a/browser/base/content/browser-context.inc b/browser/base/content/browser-context.inc
index ff700787e49..74b8f18b7b0 100644
--- a/browser/base/content/browser-context.inc
+++ b/browser/base/content/browser-context.inc
@@ -198,7 +198,7 @@
oncommand="AddKeywordForSearchField();"/>
+ oncommand="BrowserSearch.loadSearch(getBrowserSelection(), true);"/>