components/desktop/firefox/patches/firefox-48-donot-disable-locale-addon.patch
author Petr Sumbera <petr.sumbera@oracle.com>
Mon, 14 Nov 2016 04:25:50 -0800
branchs11u3-sru
changeset 7364 1ac24a377555
parent 7035 4c2f26e9d5ab
permissions -rw-r--r--
25034529 Upgrade Firefox to version 45.5.0 ESR 25099456 problem in FIREFOX/BROWSER

By default, Firefox disables the installation of 3rd party add-ons, including
language packs. We want to enable language packs by default, so set 
this to enable add-ons that are bundled with Firefox but will still disable 
third-party add-ons for security.
Solaris specific patch, will not send upstream.

diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
index 5ef66c9..7dcd0f5 100644
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -74,7 +74,7 @@
 
 // Disable add-ons that are not installed by the user in all scopes by default.
 // See the SCOPE constants in AddonManager.jsm for values to use here.
-pref("extensions.autoDisableScopes", 15);
+pref("extensions.autoDisableScopes", 11);
 
 // Require signed add-ons by default
 pref("xpinstall.signatures.required", true);