Fix Uncaught RangeError

pull/2320/head
xlivevil 2 years ago
parent 86b779f39b
commit 695ce83681
No known key found for this signature in database
GPG Key ID: D4D073C8E61991AF

@ -33,7 +33,7 @@ $(".datepicker").datepicker({
if (results) {
pubDate = new Date(results[1], parseInt(results[2], 10) - 1, results[3]) || new Date(this.value);
$(this).next('input')
.val(pubDate.toLocaleDateString(language))
.val(pubDate.toLocaleDateString(language.replaceAll("_","-")))
.removeClass("hidden");
}
}).trigger("change");

Loading…
Cancel
Save