Addresses #1262, Broken pluralization with et al. + other issues
Patch 1 from Frank -- Names using "et al." were incorrectly being considered singular
This commit is contained in:
parent
0127d6b9dd
commit
bac79ed2ac
1 changed files with 1 additions and 1 deletions
|
@ -694,7 +694,7 @@ Zotero.CSL.prototype._processNames = function(item, element, formattedString, co
|
|||
}
|
||||
} else if(formattedString.format != "Sort" &&
|
||||
name == "label" && variables[j] != "author") {
|
||||
newString.append(this._getTerm(variables[j], (maxCreators != 1), child["@form"].toString(), child["@include-period"] == "true"), child);
|
||||
newString.append(this._getTerm(variables[j], (maxCreators != 1 || useEtAl), child["@form"].toString(), child["@include-period"] == "true"), child);
|
||||
}
|
||||
}
|
||||
success = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue