From 85087c485965451697fbd1b4cb90f06136bb9c5f Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 24 Oct 2008 11:14:16 +0000 Subject: [PATCH] Fix upgrade error from previous commit --- chrome/content/zotero/xpcom/schema.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/schema.js b/chrome/content/zotero/xpcom/schema.js index 588816930..2c73b68fc 100644 --- a/chrome/content/zotero/xpcom/schema.js +++ b/chrome/content/zotero/xpcom/schema.js @@ -2091,7 +2091,7 @@ Zotero.Schema = new function(){ Zotero.DB.query("DELETE FROM tags WHERE tagID=?", row.tagID); } else { - Zotero.DB.query("UPDATE itemTags SET tag=? WHERE tagID=?", [trimmed, row.tagID]); + Zotero.DB.query("UPDATE tags SET name=? WHERE tagID=?", [trimmed, row.tagID]); } } }