www

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

commit 20a3f97bdef6dd98db1191bc0cdf7be2786b1e86
parent 94b2865149391b391e9af394508df5c948ffcd86
Author: Dan Stillman <dstillman@zotero.org>
Date:   Thu, 26 Feb 2015 16:02:36 -0500

Merge pull request #654 from sualk/4.0

Restore settings (tag colors) to server
Diffstat:
Mchrome/content/zotero/xpcom/sync.js | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/chrome/content/zotero/xpcom/sync.js b/chrome/content/zotero/xpcom/sync.js @@ -1924,6 +1924,9 @@ Zotero.Sync.Server = new function () { sql = "INSERT INTO version VALUES ('syncdeletelog', ?)"; Zotero.DB.query(sql, Zotero.Date.getUnixTimestamp()); + var sql = "UPDATE syncedSettings SET synced=0"; + Zotero.DB.query(sql); + Zotero.DB.commitTransaction(); }