www

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

commit c867994095625cca11f53c101b083230c86bab9e
parent c04ddc838985d63e4983560de00b51a57ede26c7
Author: Dan Stillman <dstillman@zotero.org>
Date:   Fri, 15 May 2009 07:01:42 +0000

Fix blank progress window when save via translator to root of library


Diffstat:
Mchrome/content/zotero/browser.js | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/chrome/content/zotero/browser.js b/chrome/content/zotero/browser.js @@ -692,7 +692,10 @@ Zotero_Browser.Tab.prototype.translate = function(libraryID, collectionID) { Zotero_Browser.isScraping = true; if(collectionID) { - collection = Zotero.Collections.get(collectionID); + var collection = Zotero.Collections.get(collectionID); + } + else { + var collection = false; } var me = this;