From: Thomas Berezansky Date: Thu, 25 Apr 2013 15:05:51 +0000 (-0400) Subject: Disable XULRunner/Firefox Plugins X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=refs%2Fheads%2Fuser%2Ftsbere%2Fno_xulrunner_plugins;p=working%2FEvergreen.git 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 --- 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);