From e6e2b06a8235e7c4a2664973ee826eba58c8aebd Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Mon, 6 Nov 2023 13:34:48 +0800 Subject: [PATCH] * Finish task #105578. --- module/bug/model.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/bug/model.php b/module/bug/model.php index 82f11c16a7..eb0c59bff5 100644 --- a/module/bug/model.php +++ b/module/bug/model.php @@ -1045,6 +1045,8 @@ class bugModel extends model ->join('mailto', ',') ->get(); + if($this->app->rawMethod == 'batchassignto') unset($bug->mailto); + $bug = $this->loadModel('file')->processImgURL($bug, $this->config->bug->editor->assignto['id'], $this->post->uid); $this->dao->update(TABLE_BUG) ->data($bug)