www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 7b6e017d38258678f1c08a3a3909890042fa0123
parent 8a5e5385cb71dc6a0cf0cb6a862543d60e2b574f
Author: Dan Stillman <dstillman@zotero.org>
Date:   Thu, 30 Sep 2010 22:50:30 +0000

Use display title for related items in reports


Diffstat:
Mchrome/content/zotero/xpcom/report.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/report.js b/chrome/content/zotero/xpcom/report.js @@ -125,7 +125,7 @@ Zotero.Report = new function() { var relateds = Zotero.Items.get(arr.related); for each(var related in relateds) { content += '<li id="i' + related.getID() + '">'; - content += escapeXML(related.getField('title')); + content += escapeXML(related.getDisplayTitle()); content += '</li>\n'; } content += '</ul>\n';