www

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

commit 904a764b10905753afc3f7169b824e906870ba8e
parent f76435a9b3d146f733eada5205b50457b80d8362
Author: Dan Stillman <dstillman@zotero.org>
Date:   Wed,  8 Jul 2009 05:18:07 +0000

Fix erroneous username mismatch message


Diffstat:
Mchrome/content/zotero/xpcom/sync.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/sync.js b/chrome/content/zotero/xpcom/sync.js @@ -1605,7 +1605,7 @@ Zotero.Sync.Server = new function () { * @return TRUE if sync should continue, FALSE if cancelled */ function _checkSyncUser(userID, libraryID) { - var sql = "SELECT key, value FROM settings WHERE " + var sql = "SELECT value FROM settings WHERE " + "setting='account' AND key='username'"; var lastUsername = Zotero.DB.valueQuery(sql); var username = Zotero.Sync.Server.username;