From 4a90c8acdaa15417637c75d87e8c934cc9897233 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Fri, 25 Mar 2011 07:09:38 +0000 Subject: [PATCH] fix "XML.toXMLString is not defined" --- chrome/content/zotero/xpcom/style.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/style.js b/chrome/content/zotero/xpcom/style.js index 8404ab14c..9a00bb895 100644 --- a/chrome/content/zotero/xpcom/style.js +++ b/chrome/content/zotero/xpcom/style.js @@ -510,7 +510,7 @@ Zotero.Style.prototype.getXML = function() { this._class = xml.@class.toString(); this._hasBibliography = !!xml.bibliography.length(); - return XML.toXMLString(); + return xml.toXMLString(); } else { var indepFile = this.independentFile; if(indepFile) return Zotero.File.getContents(indepFile);