Fix apply call in Zotero.Translate

This commit is contained in:
Simon Kornblith 2011-06-18 00:48:13 +00:00
parent fc078caddf
commit 942fe0f97f

View file

@ -1176,7 +1176,7 @@ Zotero.Translate.Web.prototype._prepareTranslation = function() {
*/
Zotero.Translate.Web.prototype.translate = function(libraryID, saveAttachments, selectedItems) {
this._selectedItems = selectedItems;
Zotero.Translate.Base.prototype.translate.apply(this, libraryID, saveAttachments);
Zotero.Translate.Base.prototype.translate.apply(this, [libraryID, saveAttachments]);
}
/**