From 3e93f94a9074f1282a6c1f49937b46d9369bf47e Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Sat, 27 Jan 2007 05:12:45 +0000 Subject: [PATCH] closes #484, RTF Citation Export Loses Characters on Windows --- chrome/content/zotero/xpcom/cite.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/cite.js b/chrome/content/zotero/xpcom/cite.js index 9764d8caf..f1ef974c9 100644 --- a/chrome/content/zotero/xpcom/cite.js +++ b/chrome/content/zotero/xpcom/cite.js @@ -1481,7 +1481,7 @@ Zotero.CSL.FormattedString.prototype.append = function(string, element, dontDeli for(i=0; i 127) { // encode unicode - newString += "\\uc0\\u"+charCode.toString()+" "; + newString += "\\uc0\\u"+charCode.toString()+" "; } else if(charCode == 92) { // double backslashes newString += "\\\\"; } else {