From bac79ed2acbcb2a4554b2bd2808f4067b59fdbc5 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 19 Dec 2008 22:40:09 +0000 Subject: [PATCH] Addresses #1262, Broken pluralization with et al. + other issues Patch 1 from Frank -- Names using "et al." were incorrectly being considered singular --- chrome/content/zotero/xpcom/csl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/csl.js b/chrome/content/zotero/xpcom/csl.js index 2338e2540..69c08ce34 100644 --- 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;