Fix for issue 940 - time was incorrectly displayed in a 12-hour fashion regardless of the 24 hour clock preference in config.js
This commit is contained in:
Unknown 2017-07-09 11:45:57 +02:00
parent 8893df118e
commit db0bd3fa2d

View File

@ -81,7 +81,7 @@ Module.register("calendar", {
case 24: {
moment.updateLocale(config.language, {
longDateFormat: {
LT: "hh:mm"
LT: "HH:mm"
}
});
break;