diff --git a/chrome/content/zotero/xpcom/data/item.js b/chrome/content/zotero/xpcom/data/item.js index 1c57189b12..e370e77152 100644 --- a/chrome/content/zotero/xpcom/data/item.js +++ b/chrome/content/zotero/xpcom/data/item.js @@ -875,6 +875,12 @@ Zotero.Item.prototype.getDisplayTitle = function (includeAuthorAndDate) { title += Zotero.localeJoin(strParts, '; '); title += ']'; } + else if (itemTypeID == 17 && title) { // 'case' itemTypeID + var reporter = this.getField('reporter'); + if (reporter) { + title = Zotero.localeJoin([title, '(' + reporter + ')']); + } + } return title; }