commit a161217f3b9610f2b455fcf85900580650106ada
parent d98f0ab07ab1034fd0e11abc6c69249639bc1ade
Author: Dan Stillman <dstillman@zotero.org>
Date: Fri, 2 Jan 2009 18:53:06 +0000
Fixes #1276, RDF export loses collection info (broken by me in r3652)
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/chrome/content/zotero/xpcom/translate.js b/chrome/content/zotero/xpcom/translate.js
@@ -2177,6 +2177,7 @@ Zotero.Translate.prototype._exportGetCollection = function() {
var returnItem = this._collectionsLeft.shift();
var obj = returnItem.serialize();
obj.name = obj.fields.name;
+ return obj;
}
}