commit bac79ed2acbcb2a4554b2bd2808f4067b59fdbc5
parent 0127d6b9dd68a81d1674b69b5af89f43854946ca
Author: Dan Stillman <dstillman@zotero.org>
Date: Fri, 19 Dec 2008 22:40:09 +0000
Addresses #1262, Broken pluralization with et al. + other issues
Patch 1 from Frank -- Names using "et al." were incorrectly being considered singular
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/csl.js b/chrome/content/zotero/xpcom/csl.js
@@ -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;