www

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

commit d875079377abaaa12a8f0d98a4e471f049275ab6
parent 4c1f8c729da2d0c0b7cc1fbe6575c66beda59b16
Author: Dan Stillman <dstillman@zotero.org>
Date:   Fri, 25 Jul 2008 18:12:35 +0000

Revert part of last 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 @@ -1633,7 +1633,7 @@ Zotero.Schema = new function(){ // Migrate big integers var itemIDs = Zotero.DB.columnQuery("SELECT itemID FROM items WHERE itemID>16777215"); for each(var oldID in itemIDs) { - var newID = Zotero.ID.get('items', true); + var newID = Zotero.ID.get('items'); var params = [newID, oldID]; Zotero.DB.query("UPDATE items SET itemID=? WHERE itemID=?", params); Zotero.DB.query("UPDATE annotations SET itemID=? WHERE itemID=?", params);