From 01f3e40b60b02e917f2c60458060dfa1623206df Mon Sep 17 00:00:00 2001 From: songchenxuan Date: Mon, 30 Sep 2024 10:02:45 +0800 Subject: [PATCH] *[misc] add reslovedBuild for bug edit. --- api/v1/entries/bug.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/v1/entries/bug.php b/api/v1/entries/bug.php index bcb8d3ade6..eab0df068d 100644 --- a/api/v1/entries/bug.php +++ b/api/v1/entries/bug.php @@ -95,7 +95,7 @@ class bugEntry extends entry $oldBug = $this->loadModel('bug')->getByID($bugID); /* Set $_POST variables. */ - $fields = 'uid,title,project,execution,openedBuild,assignedTo,pri,severity,type,story,resolvedBy,closedBy,resolution,product,plan,task,module,steps,mailto,keywords'; + $fields = 'uid,title,project,execution,openedBuild,assignedTo,pri,severity,type,story,resolvedBy,resolvedBuild,closedBy,resolution,product,plan,task,module,steps,mailto,keywords'; $this->batchSetPost($fields, $oldBug); $this->setPost('notifyEmail', implode(',', $this->request('notifyEmail', array())));