www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit c5b703da823cc87fdf31942b23e52bbb9f0394a9
parent a7c7b8d488f9e5410002bac09bfe8d14f1c78134
Author: Simon Kornblith <simon@simonster.com>
Date:   Sat, 25 Sep 2010 16:05:15 +0000

more path fixes


Diffstat:
Mchrome/content/zotero/xpcom/zotero.js | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git 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"); } }