www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 85087c485965451697fbd1b4cb90f06136bb9c5f
parent 108fd304aba2082be2a1bcb8b3d076ea24a3ec92
Author: Dan Stillman <dstillman@zotero.org>
Date:   Fri, 24 Oct 2008 11:14:16 +0000

Fix upgrade error from previous commit


Diffstat:
Mchrome/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 @@ -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]); } } }