From 4dc8d2e01fc71d2bcd28cc7faa1190d38785fdf4 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 22 Jan 2010 05:49:49 +0000 Subject: [PATCH] Fix date fields on Windows (since recent update) --- chrome/content/zotero/xpcom/zotero.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index 2a4c06c401..902b6ed80e 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -1702,7 +1702,7 @@ Zotero.Date = new function(){ var seconds = date.getUTCSeconds(); } else { - return date.toLocaleFormat('%Y-%m-%d %T'); + return date.toLocaleFormat('%Y-%m-%d %H:%M:%S'); } var utils = new Zotero.Utilities();