Fix report generation of items with tags

This commit is contained in:
Dan Stillman 2008-07-24 19:52:09 +00:00
parent 5efeeb6089
commit e591acb783

View file

@ -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';
}