From 07149f944dfd58bc522a76321bd13de26bedbc08 Mon Sep 17 00:00:00 2001 From: "chencongzhi520@gmail.com" Date: Fri, 3 May 2013 08:35:23 +0000 Subject: [PATCH] * fix bug#408. --- module/bug/model.php | 1 + 1 file changed, 1 insertion(+) 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;