From 49a90a2ae60e940134dbd74a70cb1b693ce12c11 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Wed, 17 Sep 2008 04:25:18 +0000 Subject: [PATCH] don't install text/x-csl files as hidden --- chrome/content/zotero/xpcom/mimeTypeHandler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/mimeTypeHandler.js b/chrome/content/zotero/xpcom/mimeTypeHandler.js index 2eae38230..feffcb4cd 100644 --- a/chrome/content/zotero/xpcom/mimeTypeHandler.js +++ b/chrome/content/zotero/xpcom/mimeTypeHandler.js @@ -50,7 +50,7 @@ Zotero.MIMETypeHandler = new function () { this.addHandler("application/x-endnote-refer", Zotero.Ingester.importHandler, true); this.addHandler("application/x-research-info-systems", Zotero.Ingester.importHandler, true); } - this.addHandler("text/x-csl", function(a1, a2, a3) { Zotero.Styles.install(a1, a2, a3) }); + this.addHandler("text/x-csl", function(a1, a2) { Zotero.Styles.install(a1, a2) }); } /**