From 6a58d3b2ffc81020568db7c8994bbe64f90f1a8d Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Sun, 4 May 2014 19:07:14 -0400 Subject: [PATCH] Revert "Use var in place of let" This reverts commit 9b67d60197a448d09c074fd2bf16b1089b30adc8. (I totally bungled this commit) --- chrome/content/zotero/xpcom/zotero.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index 2c968fd06..f36774b0e 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -347,11 +347,11 @@ Components.utils.import("resource://gre/modules/Services.jsm"); // Revert to profile directory if (index == 1) { - Zotero.chooseZoteroDirectory(Zotero.isStandalone, true); + Zotero.chooseZoteroDirectory(false, true); } // Locate data directory else if (index == 2) { - Zotero.chooseZoteroDirectory(Zotero.isStandalone); + Zotero.chooseZoteroDirectory(); } } return;