Addresses #502, Special handling for automatic tags

Fix broken report generation after automatic tag changes (automatic tags not currently displayed differently in reports)
This commit is contained in:
Dan Stillman 2007-01-22 22:35:46 +00:00
parent 4095b82180
commit 8fd25fc6a8

View File

@ -207,8 +207,8 @@ Zotero.Report = new function() {
// TODO: localize
content += '<h3 class="tags">' + escapeXML('Tags') + '</h3>\n';
content += '<ul class="tags">\n';
for each(var tag in arr['tags']) {
content += '<li>' + escapeXML(tag) + '</li>\n';
for each(var tag in arr.tags) {
content += '<li>' + escapeXML(tag.tag) + '</li>\n';
}
content += '</ul>\n';
}