This commit is contained in:
guanxiying
2019-12-12 09:48:54 +08:00
parent afc452bc22
commit b0175bb868
+1 -1
View File
@@ -294,7 +294,7 @@ class buildModel extends model
$bug->lastEditedBy = $this->app->user->account;
$bug->lastEditedDate = $now;
$bug->resolution = 'fixed';
$bug->resolvedBuild = $build->name;
$bug->resolvedBuild = $build->id;
$this->dao->update(TABLE_BUG)->data($bug)->where('id')->eq($bug->id)->exec();
$this->action->create('bug', $bug->id, 'Resolved', '', 'fixed', $bug->resolvedBy);
}