Fix upgrade error from previous commit

This commit is contained in:
Dan Stillman 2008-10-24 11:14:16 +00:00
parent 108fd304ab
commit 85087c4859

View file

@ -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]);
}
}
}