commit d5756c1168cb9a26b0d642cd69d63a3273c61fd8
parent 9bf8333ea8d1fd87aa509fd6663ad8082bc5602f
Author: Dan Stillman <dstillman@zotero.org>
Date: Tue, 17 Jun 2008 07:08:13 +0000
Fix tag pane refresh after adding tag to item
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/data/tag.js b/chrome/content/zotero/xpcom/data/tag.js
@@ -397,7 +397,7 @@ Zotero.Tag.prototype.save = function () {
//Zotero.Notifier.trigger('add', 'tag-item', this.id + '-' + itemID);
// TODO: notify linked items of name changes?
- // Zotero.Notifier.trigger('modify', 'item', itemIDs);
+ Zotero.Notifier.trigger('modify', 'item', removed.concat(newids));
}
Zotero.DB.commitTransaction();