www

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

commit 4d27b803dc92862cdb7d149651ef9a59aca08953
parent 056547f0c0aec939d5d5f6078377b940eeb14d27
Author: Simon Kornblith <simon@simonster.com>
Date:   Mon, 25 Jun 2012 14:05:11 -0400

Fix syntax error

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

diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js @@ -3003,7 +3003,7 @@ Zotero.Integration.DocumentData.prototype.serializeXML = function() { '<session id="'+Zotero.Utilities.htmlSpecialChars(this.sessionID)+'"/>'+ '<style id="'+Zotero.Utilities.htmlSpecialChars(this.style.styleID)+'" '+ 'hasBibliography="'+(this.style.hasBibliography ? "1" : "0")+'" '+ - 'bibliographyStyleHasBeenSet="'+(this.style.bibliographyStyleHasBeenSet ? "1" : "0)+'"/>'+ + 'bibliographyStyleHasBeenSet="'+(this.style.bibliographyStyleHasBeenSet ? "1" : "0")+'"/>'+ (prefs ? '<prefs>'+prefs+'</prefs>' : '<prefs/>')+'</data>'; };