Fix deletion of items without tags

This commit is contained in:
Dan Stillman 2008-06-18 08:58:38 +00:00
parent 2df1e34dc2
commit a610595b84

View file

@ -370,7 +370,9 @@ Zotero.Tags = new function() {
var toDelete = Zotero.DB.columnQuery(sql);
if (!toDelete) {
Zotero.DB.rollbackTransaction();
sql = "DROP TABLE tagDelete";
Zotero.DB.query(sql);
Zotero.DB.commitTransaction();
return;
}