From: Daniel Hansson Date: Tue, 24 Mar 2015 10:20:20 +0000 (+0100) Subject: Use 24h format instead of 12h format X-Git-Tag: v8.1.0alpha1~206^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=946a7c3a8360f304eb93d14ec82107efddce8a38;p=nextcloud-server.git Use 24h format instead of 12h format Use correct time format in WebUI --- 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); },