From 4eccdf724d392421283b482f3667c2276bb92b40 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Tue, 18 Sep 2012 11:54:00 -0400 Subject: [PATCH] Fix RDF in Fx >= 17 --- chrome/content/zotero/xpcom/translation/translate_firefox.js | 1 + 1 file changed, 1 insertion(+) diff --git a/chrome/content/zotero/xpcom/translation/translate_firefox.js b/chrome/content/zotero/xpcom/translation/translate_firefox.js index 378b5f39a..ab570fec2 100644 --- a/chrome/content/zotero/xpcom/translation/translate_firefox.js +++ b/chrome/content/zotero/xpcom/translation/translate_firefox.js @@ -514,6 +514,7 @@ Zotero.Translate.SandboxManager.prototype = { if(!wm) wm = new WeakMap(); var obj2 = (obj instanceof Array ? new this.sandbox.Array() : new this.sandbox.Object()); + obj2.__proto__ = obj.__proto__; for(var i in obj) { if(!obj.hasOwnProperty(i)) continue;