commit 4dc8d2e01fc71d2bcd28cc7faa1190d38785fdf4 parent 529799a28fd395696654a226b81a216fa7552cb1 Author: Dan Stillman <dstillman@zotero.org> Date: Fri, 22 Jan 2010 05:49:49 +0000 Fix date fields on Windows (since recent update) Diffstat:
| M | 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 @@ -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();