From 817a768a8f3749975c6f52a00f98459d50859c46 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Wed, 9 Mar 2011 23:37:28 +0000 Subject: [PATCH] update to citeproc-js 1.0.123 --- chrome/content/zotero/xpcom/citeproc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/citeproc.js b/chrome/content/zotero/xpcom/citeproc.js index 3db9ce601..b2e52dd5e 100644 --- a/chrome/content/zotero/xpcom/citeproc.js +++ b/chrome/content/zotero/xpcom/citeproc.js @@ -1752,7 +1752,7 @@ CSL.DateParser = function (txt) { }; CSL.Engine = function (sys, style, lang, forceLang) { var attrs, langspec, localexml, locale; - this.processor_version = "1.0.122"; + this.processor_version = "1.0.123"; this.csl_version = "1.0"; this.sys = sys; this.sys.xml = new CSL.System.Xml.Parsing(); @@ -8015,7 +8015,7 @@ CSL.Util.FlipFlopper.prototype.getSplitStrings = function (str) { } len = strs.length; for (pos = 0; pos < len; pos += 2) { - strs[pos] = strs[pos].replace("'", "\u02bc"); + strs[pos] = strs[pos].replace("'", "\u2019"); strs[pos] = CSL.Output.Formats[this.state.opt.mode].text_escape(strs[pos]); } return strs;