MDL-77398 mod_assign: disable form submit protection for batch options.

This commit is contained in:
Paul Holden 2023-02-24 09:19:53 +00:00
parent b2d0712748
commit 1e16260ba7
No known key found for this signature in database
GPG Key ID: A81A96D6045F6164

View File

@ -4545,7 +4545,10 @@ class assign {
'context'=>$this->get_context(),
'markingworkflow'=>$markingworkflow,
'markingallocation'=>$markingallocation);
$classoptions = array('class'=>'gradingbatchoperationsform');
$classoptions = [
'class' => 'gradingbatchoperationsform',
'data-double-submit-protection' => 'off',
];
$gradingbatchoperationsform = new mod_assign_grading_batch_operations_form(null,
$batchformparams,
@ -5023,7 +5026,11 @@ class assign {
'context'=>$this->get_context(),
'markingworkflow'=>$this->get_instance()->markingworkflow,
'markingallocation'=>$markingallocation);
$formclasses = array('class'=>'gradingbatchoperationsform');
$formclasses = [
'class' => 'gradingbatchoperationsform',
'data-double-submit-protection' => 'off'
];
$mform = new mod_assign_grading_batch_operations_form(null,
$batchformparams,
'post',