commit 942fe0f97f09a3283dab1a455f22a554526290dc
parent fc078caddff68dba33d05182bc8f9619b9b96ad9
Author: Simon Kornblith <simon@simonster.com>
Date: Sat, 18 Jun 2011 00:48:13 +0000
Fix apply call in Zotero.Translate
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/translation/translate.js b/chrome/content/zotero/xpcom/translation/translate.js
@@ -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]);
}
/**