commit 3f0fb0e4e68aac6bf4deaee11a5543497317a7a9 parent 9bc5c4435e69daed4e9fcfaa3e22f1f4d2a1fd75 Author: Dan Stillman <dstillman@zotero.org> Date: Sat, 23 Sep 2006 08:00:01 +0000 Fix broken item deleting (fulltext regression) Diffstat:
| M | 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 @@ -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";