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:
parent
4095b82180
commit
8fd25fc6a8
|
@ -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';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user