1From 2cbaf81a1525540f199d661cef7d8eb7d3560378 Mon Sep 17 00:00:00 2001 2From: Mike Hommey <mh@glandium.org> 3Date: Fri, 17 Feb 2012 17:47:15 +0100 4Subject: [PATCH] Don't auto-disable extensions in system directories 5 6--- 7 browser/app/profile/firefox.js | 2 +- 8 1 file changed, 1 insertion(+), 1 deletion(-) 9 10diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js 11index 04fd609ac9..d735929909 100644 12--- a/browser/app/profile/firefox.js 13+++ b/browser/app/profile/firefox.js 14@@ -62,7 +62,7 @@ pref("extensions.systemAddon.update.enabled", true); 15 16 // Disable add-ons that are not installed by the user in all scopes by default. 17 // See the SCOPE constants in AddonManager.jsm for values to use here. 18-pref("extensions.autoDisableScopes", 15); 19+pref("extensions.autoDisableScopes", 3); 20 // Scopes to scan for changes at startup. 21 pref("extensions.startupScanScopes", 0); 22 23