From 946a7c3a8360f304eb93d14ec82107efddce8a38 Mon Sep 17 00:00:00 2001 From: Daniel Hansson Date: Tue, 24 Mar 2015 11:20:20 +0100 Subject: [PATCH] Use 24h format instead of 12h format Use correct time format in WebUI --- core/js/js.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/js.js b/core/js/js.js index f24694124ad..e65b33d8607 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -1338,7 +1338,7 @@ OC.Util = { * @returns {string} timestamp formatted as requested */ formatDate: function (timestamp, format) { - format = format || "MMMM D, YYYY h:mm"; + format = format || "MMMM D, YYYY H:mm"; return moment(timestamp).format(format); }, -- 2.39.5