* Fix bug for #task 53647.

This commit is contained in:
liumengyi
2022-05-11 10:46:40 +08:00
parent 8c6c09d699
commit 460f597c60
+1 -1
View File
@@ -2747,8 +2747,8 @@ class bugModel extends model
$bugQuery = preg_replace("/`story`[ ]+(NOT[ ]*)?LIKE[ ]+'%$searchValue%'/Ui", '`story` $1 IN (' . implode($story, ',') .')', $bugQuery);
}
$bugQuery .= ' AND `story` != 0';
}
$bugQuery .= ' AND `story` != 0';
}
$bugs = $this->dao->select('*')->from(TABLE_BUG)->where($bugQuery)