]> source.dussan.org Git - nextcloud-server.git/commitdiff
Revert "Change to 24H format instead of 12H format"
authorVincent Petry <pvince81@owncloud.com>
Tue, 24 Mar 2015 10:08:53 +0000 (11:08 +0100)
committerVincent Petry <pvince81@owncloud.com>
Tue, 24 Mar 2015 10:08:53 +0000 (11:08 +0100)
This reverts commit 8279dde97a8f93b74eb733d243d6a5bb41aa15e3.

core/js/js.js

index e65b33d86077d4797643cc0efae4961e487abbc8..f24694124ad7f7531a0f09e3fc096b76a37c6973 100644 (file)
@@ -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);
        },