diff --git a/module/bug/model.php b/module/bug/model.php index 6a302a0d85..22487045cc 100644 --- a/module/bug/model.php +++ b/module/bug/model.php @@ -547,6 +547,7 @@ class bugModel extends model $bugs = $this->dao->select('*')->from(TABLE_BUG) ->where('resolvedDate')->ge($project->begin) ->andWhere('product')->eq($productID) + ->andWhere('deleted')->eq(0) ->orderBy('openedDate ASC') ->fetchAll(); return $bugs;