From 31b10ab2ac52b90721d2034907a04428769e4a4f Mon Sep 17 00:00:00 2001 From: hufangzhou <746775970@qq.com> Date: Mon, 31 May 2021 11:03:26 +0800 Subject: [PATCH] * Fix a bug. --- module/common/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/common/model.php b/module/common/model.php index 6ed4c2a3d8..745a205a76 100644 --- a/module/common/model.php +++ b/module/common/model.php @@ -1408,7 +1408,7 @@ EOD; $diff = ''; if(substr_count($value, "\n") > 1 or substr_count($old->$key, "\n") > 1 or - strpos('name,title,desc,spec,steps,content,digest,verify,report', strtolower($key)) !== false) + strpos('name,title,desc,spec,steps,content,digest,verify,report,analysis', strtolower($key)) !== false) { $diff = commonModel::diff($old->$key, $value); }