commit 58a41a194070393bb96d4b17a040c30081477760 parent 1f80885aeba52fdd8d0bae10b3d32c2350b6442e Author: Simon Kornblith <simon@simonster.com> Date: Mon, 25 Jun 2012 00:40:08 -0400 Remove some unnecessary htmlSpecialChars calls Diffstat:
| M | chrome/content/zotero/xpcom/integration.js | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js @@ -3006,8 +3006,8 @@ Zotero.Integration.DocumentData.prototype.serializeXML = function() { 'zotero-version="'+Zotero.Utilities.htmlSpecialChars(Zotero.version)+'">'+ '<session id="'+Zotero.Utilities.htmlSpecialChars(this.sessionID)+'"/>'+ '<style id="'+Zotero.Utilities.htmlSpecialChars(this.style.styleID)+'" '+ - 'hasBibliography="'+Zotero.Utilities.htmlSpecialChars(this.style.hasBibliography ? 1 : 0)+'" '+ - 'bibliographyStyleHasBeenSet="'+Zotero.Utilities.htmlSpecialChars(this.style.bibliographyStyleHasBeenSet ? 1 : 0)+'"/>'+ + 'hasBibliography="'+(this.style.hasBibliography ? "1" : "0")+'" '+ + 'bibliographyStyleHasBeenSet="'+(this.style.bibliographyStyleHasBeenSet ? "1" : "0")+'"/>'+ (prefs ? '<prefs>'+prefs+'</prefs>' : '<prefs/>')+'</data>'; }