Merged r1792-1793 to trunk
This commit is contained in:
parent
3ce9d82b00
commit
cc497c2718
2 changed files with 3 additions and 3 deletions
|
@ -2297,8 +2297,8 @@ Zotero.CSL.FormattedString.prototype.append = function(string, element, dontDeli
|
|||
.replace(/(\r\n|\r|\n)/g, "<br />")
|
||||
.replace(/[\x00-\x1F]/g, "");
|
||||
} else if(this.format == "RTF") {
|
||||
string = string.replace(/[\x7F-\uFFFF]/g, Zotero.CSL.FormattedString._rtfEscapeFunction)
|
||||
.replace("\\", "\\\\", "g")
|
||||
string = string.replace("\\", "\\\\", "g")
|
||||
.replace(/[\x7F-\uFFFF]/g, Zotero.CSL.FormattedString._rtfEscapeFunction)
|
||||
.replace("\t", "\\tab ", "g")
|
||||
.replace(/(\r\n|\r|\n)/g, "\\line ");
|
||||
} else if(this.format == "Integration") {
|
||||
|
|
|
@ -1134,7 +1134,7 @@ Zotero.CSL.Compat.prototype._processCreators = function(type, element, creators,
|
|||
var firstName, lastName;
|
||||
for(var i=0; i<maxCreators; i++) {
|
||||
var firstName = "";
|
||||
if(element["form"] && element["form"] != "short") {
|
||||
if(!element["form"] || element["form"] != "short") {
|
||||
if(child["initialize-with"] != undefined) {
|
||||
// even if initialize-with is simply an empty string, use
|
||||
// initials
|
||||
|
|
Loading…
Add table
Reference in a new issue