* Fix bug#11695.

This commit is contained in:
leiyong
2021-03-31 11:12:25 +03:00
parent 9a010bf5ef
commit 623ce6b32f
3 changed files with 11 additions and 6 deletions
+1 -1
View File
@@ -317,7 +317,7 @@ js::set('blockID', $blockID);
<?php echo html::submitButton();?>
<?php if($caseID == 0) echo html::backButton();?>
<?php echo html::hidden('case', (int)$caseID) . html::hidden('caseVersion', (int)$version);?>
<?php echo html::hidden('result', (int)$runID) . html::hidden('testtask', $testtask ? (int)$testtask : 0);?>
<?php echo html::hidden('result', (int)$runID) . html::hidden('testtask', empty($testtask) ? 0 : $testtask->id);?>
</td>
</tr>
</tfoot>