From 3f0fb0e4e68aac6bf4deaee11a5543497317a7a9 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 23 Sep 2006 08:00:01 +0000 Subject: [PATCH] Fix broken item deleting (fulltext regression) --- chrome/chromeFiles/content/scholar/xpcom/data_access.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/chromeFiles/content/scholar/xpcom/data_access.js b/chrome/chromeFiles/content/scholar/xpcom/data_access.js index f0e489f20..2acb4f880 100644 --- a/chrome/chromeFiles/content/scholar/xpcom/data_access.js +++ b/chrome/chromeFiles/content/scholar/xpcom/data_access.js @@ -1465,7 +1465,7 @@ Scholar.Item.prototype.erase = function(deleteChildren){ // Clear fulltext cache Scholar.Fulltext.clearItemWords(this.getID()); - Scholar.Fulltext.clearItemContent(this.getID()); + //Scholar.Fulltext.clearItemContent(this.getID()); Scholar.Fulltext.purgeUnusedWords(); sql = 'DELETE FROM itemCreators WHERE itemID=' + this.getID() + ";\n";