This commit is contained in:
tanghucheng
2022-11-03 14:56:05 +08:00
parent ed6b16e25e
commit df2e70c0cb
5 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -1198,7 +1198,7 @@ class executionModel extends model
if($percentTotal >100)
{
dao::$errors['percent'] = sprintf($this->lang->execution->workloadTotal, $oldPercentTotal . '%');
dao::$errors['percent'] = sprintf($this->lang->execution->workloadTotal, '%', $oldPercentTotal . '%');
return false;
}
}
@@ -1211,7 +1211,7 @@ class executionModel extends model
if($childrenTotalPercent > 100)
{
dao::$errors['parent'] = sprintf($this->lang->execution->workloadTotal, $childrenTotalPercent . '%');
dao::$errors['parent'] = sprintf($this->lang->execution->workloadTotal, '%', $childrenTotalPercent . '%');
return false;
}
}