View | Details | Raw Unified | Return to bug 37542
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/js-date-format.inc (-2 / +1 lines)
Lines 91-97 Link Here
91
91
92
        window.$date_to_rfc3339 = function(value, options) {
92
        window.$date_to_rfc3339 = function(value, options) {
93
            var dateformat = (options&&options.dateformat)||def_date_format;
93
            var dateformat = (options&&options.dateformat)||def_date_format;
94
            let m = dayjs(value, get_date_pattern(dateformat));
94
            let m = dayjs(value, get_date_pattern(dateformat), true);
95
            return m.format("YYYY-MM-DD");
95
            return m.format("YYYY-MM-DD");
96
        }
96
        }
97
97
98
- 

Return to bug 37542