From abd2456d28cb89d321532cf6d4a37fe84deda363 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Wed, 24 Aug 2011 01:13:33 +0000 Subject: [PATCH] Revert part of last patch, since it doesn't seem to help things --- chrome/content/zotero/xpcom/zotero.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index 20fba801f0..1285b3778b 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -853,7 +853,7 @@ if(appInfo.platformVersion[0] >= 2) { if(defaultSection.IsRelative) { var defaultProfile = prefDir.clone().QueryInterface(Components.interfaces.nsILocalFile); - defaultProfile.appendRelativePath(defaultSection.Path); + for each(var dir in defaultSection.Path.split("/")) defaultProfile.append(dir); } else { var defaultProfile = Components.classes["@mozilla.org/file/local;1"] .createInstance(Components.interfaces.nsILocalFile);