* Fix bug#23841.

This commit is contained in:
leiyong
2022-06-17 01:30:09 +00:00
parent 1bc6b260a5
commit ae55e2c31e
4 changed files with 21 additions and 4 deletions
+9
View File
@@ -149,6 +149,15 @@ js::set('errorEnd', $lang->execution->errorGreaterProject);
<script>
$('#executionForm').submit(function()
{
// Clear all error messages.
$('input[name^=begins]').each(function()
{
var beginDateID = $(this).attr('id');
var endDateID = beginDateID.replace('begins', 'ends');
$('#help' + beginDateID).remove();
$('#help' + endDateID).remove();
});
var submitForm = true;
$('input[name^=begins]').each(function()
{