* bugModel: remove unused parameter, fix bug #41143.

This commit is contained in:
liugang
2023-12-08 15:31:52 +08:00
parent 0c1a518e3a
commit c5f116efc7
+1 -1
View File
@@ -1292,7 +1292,7 @@ class bugModel extends model
$datas = $this->dao->select('execution AS name, count(execution) AS value')->from(TABLE_BUG)->where($this->reportCondition())->groupBy('execution')->orderBy('value_desc')->fetchAll('name');
if(!$datas) return array();
$executionPairs = $this->loadModel('execution')->getPairs($this->session->project);
$executionPairs = $this->loadModel('execution')->getPairs();
$maxLength = common::checkNotCN() ? 22 : 12;
foreach($datas as $executionID => $data)
{