commit 72a99d32f3a6c69ede9475290d1a4b999baf0ad6 parent dbe7d6ca3afe050cccbd198e4900a4a69b1c9b4a Author: Dan Stillman <dstillman@zotero.org> Date: Sat, 26 Apr 2014 14:36:00 -0400 Fix breakage from #467 / #475 Diffstat:
| M | 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 @@ -953,7 +953,7 @@ Zotero.Item.prototype.getDisplayTitle = function (includeAuthorAndDate) { } else { var court = this.getField('court'); if (court) { - title = title + ' (' + court + '); + title = title + ' (' + court + ')'; } } }