From 5d45880fde6a11aee10c67b760d0ac85b61addcb Mon Sep 17 00:00:00 2001 From: caoyanyi Date: Wed, 16 Mar 2022 15:50:22 +0800 Subject: [PATCH] * Adjust code. --- module/repo/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/repo/model.php b/module/repo/model.php index e375a8db50..f736372a78 100644 --- a/module/repo/model.php +++ b/module/repo/model.php @@ -1981,7 +1981,7 @@ class repoModel extends model */ public function getExecutionPairs($product, $branch = 0) { - $pairs = array(); + $pairs = array(); $executions = $this->loadModel('execution')->getList(0, 'all', 'undone', 0, $product, $branch); foreach($executions as $execution) $pairs[$execution->id] = $execution->name; return $pairs;