diff --git a/core/js/js.js b/core/js/js.js index e65b33d860..f24694124a 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); },