@@ -, +, @@ --- koha-tmpl/opac-tmpl/bootstrap/en/includes/js-date-format.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/js-date-format.inc +++ a/koha-tmpl/opac-tmpl/bootstrap/en/includes/js-date-format.inc @@ -27,7 +27,7 @@ window.$date = function(value, options) { var tz = (options&&options.tz)||def_tz; var m = moment(value); - if(tz) m.tz(tz); + if((m.creationData.format !== 'YYYY-MM-DD')&&tz) m.tz(tz); var dateformat = (options&&options.dateformat)||def_date_format; var withtime = (options&&options.withtime)||false; @@ -59,4 +59,4 @@ } })(); - + --