From ecc602a82bde0079ec9f5e5c13a3b733048caf68 Mon Sep 17 00:00:00 2001 From: cschwarz007 Date: Thu, 13 Jul 2017 23:26:36 +0200 Subject: [PATCH] Update calendar.js The 24hour format is wrong and should be HH:mm rather than hh:mm --- modules/default/calendar/calendar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js index 9ab864b94a..672a47b3b5 100644 --- a/modules/default/calendar/calendar.js +++ b/modules/default/calendar/calendar.js @@ -81,7 +81,7 @@ Module.register("calendar", { case 24: { moment.updateLocale(config.language, { longDateFormat: { - LT: "hh:mm" + LT: "HH:mm" } }); break;