commit e591acb783c5af350d513749d196c4a88bf0a637
parent 5efeeb608915a03ab334166711b7ecfa81ff60a7
Author: Dan Stillman <dstillman@zotero.org>
Date: Thu, 24 Jul 2008 19:52:09 +0000
Fix report generation of items with tags
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/report.js b/chrome/content/zotero/xpcom/report.js
@@ -298,7 +298,7 @@ Zotero.Report = new function() {
content += '<h3 class="tags">' + escapeXML(str) + '</h3>\n';
content += '<ul class="tags">\n';
for each(var tag in arr.tags) {
- content += '<li>' + escapeXML(tag.tag) + '</li>\n';
+ content += '<li>' + escapeXML(tag.name) + '</li>\n';
}
content += '</ul>\n';
}