www

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

commit 66a92a5f43e0aa5e09b8e694d2f83e4a62c57b1a
parent 664b17190aba80914821ba115b9a1e03f7d6c63f
Author: Dan Stillman <dstillman@zotero.org>
Date:   Mon, 23 Feb 2009 04:54:26 +0000

Hide another idle message


Diffstat:
Mchrome/content/zotero/xpcom/db.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/chrome/content/zotero/xpcom/db.js b/chrome/content/zotero/xpcom/db.js @@ -763,8 +763,8 @@ Zotero.DBConnection.prototype.backupDatabase = function (suffix) { var intervalMinutes = Zotero.Prefs.get('backup.interval'); var interval = intervalMinutes * 60 * 1000; if ((now - lastBackupTime) < interval) { - Zotero.debug("Last backup of database '" + this._dbName - + "' was less than " + intervalMinutes + " minutes ago -- skipping backup"); + //Zotero.debug("Last backup of database '" + this._dbName + // + "' was less than " + intervalMinutes + " minutes ago -- skipping backup"); return; } }