From 525072e6cd37511b062f6e06c47d864ca0cc2577 Mon Sep 17 00:00:00 2001 From: Thomas Berezansky Date: Thu, 25 Apr 2013 11:05:51 -0400 Subject: [PATCH] Disable XULRunner/Firefox Plugins We don't actually need them, and they may cause hard to diagnose issues. Note: This does not disable *extensions*. Signed-off-by: Thomas Berezansky --- Open-ILS/xul/staff_client/defaults/preferences/standalone_xul_app.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Open-ILS/xul/staff_client/defaults/preferences/standalone_xul_app.js b/Open-ILS/xul/staff_client/defaults/preferences/standalone_xul_app.js index 65d995a81b..2585ccc77a 100644 --- a/Open-ILS/xul/staff_client/defaults/preferences/standalone_xul_app.js +++ b/Open-ILS/xul/staff_client/defaults/preferences/standalone_xul_app.js @@ -71,3 +71,6 @@ pref("extensions.getMoreThemesURL", "chrome://mozapps/locale/extensions/extensio pref("network.protocol-handler.warn-external.http", false); pref("network.protocol-handler.warn-external.https", false); pref("network.protocol-handler.warn-external.ftp", false); + +// No plugins from Firefox! +pref("plugin.disable", true); -- 2.11.0