www

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

commit 5057da9ed3bb2cbd13579c8790cd756549133353
parent 252255c2eb36ca10e7c86abce1691e27d6a4a1c6
Author: Simon Kornblith <simon@simonster.com>
Date:   Sun,  2 Oct 2011 18:21:41 +0000

Properly pass URL


Diffstat:
Mchrome/content/zotero/xpcom/utilities_translate.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/utilities_translate.js b/chrome/content/zotero/xpcom/utilities_translate.js @@ -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());