From 68bd2ae27c226c2f5a386767f1738d9509824ec3 Mon Sep 17 00:00:00 2001 From: zhujinyong Date: Wed, 27 Jun 2012 06:54:48 +0000 Subject: [PATCH] * fix a bug : update function should remove allchecker. --- module/build/model.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/build/model.php b/module/build/model.php index 6666ccdff5..35f02f5a35 100644 --- a/module/build/model.php +++ b/module/build/model.php @@ -142,6 +142,7 @@ class buildModel extends model ->setDefault('bugs', '') ->join('stories', ',') ->join('bugs', ',') + ->remove('allchecker') ->get(); $this->dao->update(TABLE_BUILD)->data($build) ->autoCheck()