Properly pass URL

This commit is contained in:
Simon Kornblith 2011-10-02 18:21:41 +00:00
parent 252255c2eb
commit 5057da9ed3

View File

@ -235,7 +235,7 @@ Zotero.Utilities.Translate.prototype.processDocuments = function(urls, processor
var newLoc = doc.location;
if(Zotero.isFx && (loc.protocol !== newLoc.protocol || loc.host !== newLoc.host)) {
// Cross-site; need to serialize and unserialize
processor(Zotero.Translate.SandboxManager.Fx5DOMWrapper(doc, newLoc.toString()));
processor(Zotero.Translate.SandboxManager.Fx5DOMWrapper(doc), newLoc.toString());
} else {
// Not cross-site; no need to wrap
processor(doc, newLoc.toString());