mirror of https://github.com/django/django.git
Fixed #33784 -- Removed unnecessary format escaping in admin calendar widget.
Replacements were added infa0653cd1d
where we created a callback function by concatenating strings. It's unnecessary sinced638cdc42a
.
This commit is contained in:
parent
8d160f154f
commit
d19a53d8e3
|
@ -387,13 +387,7 @@
|
|||
DateTimeShortcuts.calendars[num].drawNextMonth();
|
||||
},
|
||||
handleCalendarCallback: function(num) {
|
||||
let format = get_format('DATE_INPUT_FORMATS')[0];
|
||||
// the format needs to be escaped a little
|
||||
format = format.replace('\\', '\\\\')
|
||||
.replace('\r', '\\r')
|
||||
.replace('\n', '\\n')
|
||||
.replace('\t', '\\t')
|
||||
.replace("'", "\\'");
|
||||
const format = get_format('DATE_INPUT_FORMATS')[0];
|
||||
return function(y, m, d) {
|
||||
DateTimeShortcuts.calendarInputs[num].value = new Date(y, m - 1, d).strftime(format);
|
||||
DateTimeShortcuts.calendarInputs[num].focus();
|
||||
|
|
Loading…
Reference in New Issue