commit 9a44958183f42b496f9e6d82bc53f4ed84f62933 Author: Mike Perry mikeperry-git@torproject.org Date: Wed Jun 24 20:48:10 2015 -0700
fixup! TB4: Tor Browser's Firefox preference overrides.
Bug #16254: Disable GeoIP-based search results. --- browser/app/profile/000-tor-browser.js | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js index b16737d..da69e6e 100644 --- a/browser/app/profile/000-tor-browser.js +++ b/browser/app/profile/000-tor-browser.js @@ -59,6 +59,9 @@ pref("services.sync.engine.addons", false); pref("services.sync.engine.tabs", false); pref("extensions.getAddons.cache.enabled", false); // https://blog.mozilla.org/addons/how-to-opt-out-of-add-on-metadata-updates/ pref("browser.newtabpage.enhanced", false); // Bug 16316 - Avoid potential confusion over tiles for now. +pref("browser.search.countryCode", "US"); // The next three prefs disable GeoIP search lookups (#16254) +pref("browser.search.region", "US"); +pref("browser.search.geoip.url", "");
// Fingerprinting pref("webgl.min_capability_mode", true);
tbb-commits@lists.torproject.org