From 72a99d32f3a6c69ede9475290d1a4b999baf0ad6 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 26 Apr 2014 14:36:00 -0400 Subject: [PATCH] Fix breakage from #467 / #475 --- chrome/content/zotero/xpcom/data/item.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/data/item.js b/chrome/content/zotero/xpcom/data/item.js index 7f45b19303..08a15a0c17 100644 --- a/chrome/content/zotero/xpcom/data/item.js +++ b/chrome/content/zotero/xpcom/data/item.js @@ -953,7 +953,7 @@ Zotero.Item.prototype.getDisplayTitle = function (includeAuthorAndDate) { } else { var court = this.getField('court'); if (court) { - title = title + ' (' + court + '); + title = title + ' (' + court + ')'; } } }