From c5b703da823cc87fdf31942b23e52bbb9f0394a9 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Sat, 25 Sep 2010 16:05:15 +0000 Subject: [PATCH] more path fixes --- chrome/content/zotero/xpcom/zotero.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index 702e181a8..eb6b1bf4a 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -624,11 +624,13 @@ var Zotero = new function(){ if(Zotero.isStandalone) { if(Zotero.isWin) { + prefDir = prefDir.parent; prefDir.append("Mozilla"); prefDir.append("Firefox"); } else if(Zotero.isMac) { prefDir.append("Firefox"); } else { + prefDir = prefDir.parent; prefDir.append(".mozilla"); prefDir.append("firefox"); } @@ -642,6 +644,7 @@ var Zotero = new function(){ } else { prefDir = prefDir.parent; prefDir.append(".zotero"); + prefDir.append("zotero"); } }