From 9f90a9473189beb1d7933345419c205cba8c7f63 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Thu, 20 Sep 2007 19:14:45 +0000 Subject: [PATCH] closes #772, Bibliography items never drop out (which, as far as I can tell, was only happening in old schema CSLs) --- chrome/content/zotero/xpcom/cite_compat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/cite_compat.js b/chrome/content/zotero/xpcom/cite_compat.js index b009fe5b6..a686cf518 100644 --- a/chrome/content/zotero/xpcom/cite_compat.js +++ b/chrome/content/zotero/xpcom/cite_compat.js @@ -329,7 +329,7 @@ Zotero.CSL.Compat.ItemSet.prototype.remove = function(items) { if(items[i] instanceof Zotero.Item) { var item = items[i]; } else { - var item = Zotero.Items.get(i); + var item = Zotero.Items.get(items[i]); } if(!item) continue; this.items.splice(this.items.indexOf(item), 1);