Fix error when deleting non-attachment items caused by r1195

This commit is contained in:
Dan Stillman 2007-02-21 19:53:04 +00:00
parent 937ccaa850
commit 3c60b98d69

View File

@ -2061,9 +2061,11 @@ Zotero.Item.prototype.erase = function(deleteChildren){
}
// Clear fulltext cache
Zotero.Fulltext.clearItemWords(this.getID());
//Zotero.Fulltext.clearItemContent(this.getID());
Zotero.Fulltext.purgeUnusedWords();
if (this.isAttachment()) {
Zotero.Fulltext.clearItemWords(this.getID());
//Zotero.Fulltext.clearItemContent(this.getID());
Zotero.Fulltext.purgeUnusedWords();
}
sql = 'DELETE FROM itemCreators WHERE itemID=' + this.getID() + ";\n";
sql += 'DELETE FROM itemNotes WHERE itemID=' + this.getID() + ";\n";