* Fix function params type bug. the bug #42927.

This commit is contained in:
wangyuting
2024-01-03 10:42:09 +08:00
parent 466a9e6b66
commit 5fde95533b
+1 -1
View File
@@ -763,7 +763,7 @@ class testcaseModel extends model
if($caseIdList)
{
$this->dao->update(TABLE_CASE)->set('deleted')->eq('1')->where('id')->in($caseIdList)->exec();
foreach($caseIdList as $caseID) $this->action->create('case', $caseID, 'deleted', '', actionModel::CAN_UNDELETED);
foreach($caseIdList as $caseID) $this->action->create('case', (int)$caseID, 'deleted', '', actionModel::CAN_UNDELETED);
}
/* 删除场景。 */