components/desktop/thunderbird/patches/firefox-48-donot-disable-locale-addon.patch
changeset 7018 fdf447a07aff
parent 7017 25872950aa80
child 7020 58ca1f0fa3a7
equal deleted inserted replaced
7017:25872950aa80 7018:fdf447a07aff
     1 By default, Firefox disables the installation of 3rd party add-ons, including
       
     2 language packs. We want to enable language packs by default, so set 
       
     3 this to enable add-ons that are bundled with Firefox but will still disable 
       
     4 third-party add-ons for security.
       
     5 Solaris specific patch, will not send upstream.
       
     6 
       
     7 diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
       
     8 index 5ef66c9..7dcd0f5 100644
       
     9 --- a/browser/app/profile/firefox.js
       
    10 +++ b/browser/app/profile/firefox.js
       
    11 @@ -61,7 +61,7 @@ pref("extensions.hotfix.certs.1.sha1Fingerprint", "F1:DB:F9:6A:7B:B8:04:FA:48:3C
       
    12  
       
    13  // Disable add-ons that are not installed by the user in all scopes by default.
       
    14  // See the SCOPE constants in AddonManager.jsm for values to use here.
       
    15 -pref("extensions.autoDisableScopes", 15);
       
    16 +pref("extensions.autoDisableScopes", 11);
       
    17  
       
    18  // Dictionary download preference
       
    19  pref("browser.dictionaries.download.url", "https://addons.mozilla.org/%LOCALE%/firefox/dictionaries/");